diff --git a/holo-daemon/holod.toml b/holo-daemon/holod.toml index 403760fb..b2cf1ae0 100644 --- a/holo-daemon/holod.toml +++ b/holo-daemon/holod.toml @@ -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 @@ -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 diff --git a/holo-daemon/src/config.rs b/holo-daemon/src/config.rs index 5595c3c9..df9c6726 100644 --- a/holo-daemon/src/config.rs +++ b/holo-daemon/src/config.rs @@ -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(), } } @@ -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(), } }