Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed holod to listen to [::] instead of [::1] #18

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions holo-daemon/holod.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ database_path = "/var/run/holo/holo.db"
# Enable or disable the plugin
enabled = true
# gRPC server listening address
address = "[::1]:50051"
address = "[::]:50051"
# Optional gRPC TLS configuration
[plugins.grpc.tls]
# Enable or disable TLS authentication
Expand All @@ -81,7 +81,7 @@ database_path = "/var/run/holo/holo.db"
# Enable or disable the plugin
enabled = true
# gNMI server listening address
address = "[::1]:10161"
address = "[::]:10161"
# Optional gNMI TLS configuration
[plugins.gnmi.tls]
# Enable or disable TLS authentication
Expand Down
4 changes: 2 additions & 2 deletions holo-daemon/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ impl Default for Grpc {
fn default() -> Grpc {
Grpc {
enabled: true,
address: "[::1]:50051".to_owned(),
address: "[::]:50051".to_owned(),
tls: Default::default(),
}
}
Expand All @@ -199,7 +199,7 @@ impl Default for Gnmi {
fn default() -> Gnmi {
Gnmi {
enabled: true,
address: "[::1]:10161".to_owned(),
address: "[::]:10161".to_owned(),
tls: Default::default(),
}
}
Expand Down
Loading