Skip to content

Commit

Permalink
Merge pull request #18 from frederic-loui/holod-listen-to-all-intf
Browse files Browse the repository at this point in the history
changed holod to listen to [::] instead of [::1]
  • Loading branch information
rwestphal committed Apr 10, 2024
2 parents ed85b84 + c013e3c commit 8ad0dd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 8ad0dd1

Please sign in to comment.