@@ -122,6 +122,15 @@ DEFPY (ldp_discovery_link_interval,
122
122
return (ldp_vty_disc_interval (vty , no , HELLO_LINK , interval ));
123
123
}
124
124
125
+ DEFPY (ldp_disable_establish_hello ,
126
+ ldp_disable_establish_hello_cmd ,
127
+ "[no] disable-establish-hello" ,
128
+ NO_STR
129
+ "Disable sending additional LDP hello message on establishing LDP tcp connection\n" )
130
+ {
131
+ return ldp_vty_disable_establish_hello (vty , no );
132
+ }
133
+
125
134
DEFPY (ldp_discovery_targeted_interval ,
126
135
ldp_discovery_targeted_interval_cmd ,
127
136
"[no] discovery targeted-hello interval (1-65535)$interval" ,
@@ -866,9 +875,11 @@ ldp_vty_init (void)
866
875
867
876
install_element (LDP_IPV4_IFACE_NODE , & ldp_discovery_link_holdtime_cmd );
868
877
install_element (LDP_IPV4_IFACE_NODE , & ldp_discovery_link_interval_cmd );
878
+ install_element (LDP_IPV4_IFACE_NODE , & ldp_disable_establish_hello_cmd );
869
879
870
880
install_element (LDP_IPV6_IFACE_NODE , & ldp_discovery_link_holdtime_cmd );
871
881
install_element (LDP_IPV6_IFACE_NODE , & ldp_discovery_link_interval_cmd );
882
+ install_element (LDP_IPV6_IFACE_NODE , & ldp_disable_establish_hello_cmd );
872
883
873
884
install_element (LDP_L2VPN_NODE , & ldp_bridge_cmd );
874
885
install_element (LDP_L2VPN_NODE , & ldp_mtu_cmd );
0 commit comments