Hello community,
maybe someone can tell me, what I'm doing wrong here..
I'm not able to remove an IPv6 address from a host or network object. This is a string field, but setting it to an empty string is just ignored. I did not found a syntax example yet, how to remove a field completly.
I'm using SmartConsole CLI v1.5 (R80.30 JHFA T140) in this example.
> show host name host17
...
name: "host17"
type: "host"
...
ipv4-address: "192.168.1.2"
ipv6-address: "2001:DB8::12"
...
> set host name host17 ipv6-address ""
> show host name host17
...
name: "host17"
type: "host"
...
ipv4-address: "192.168.1.2"
ipv6-address: "2001:DB8::12"
...
> set host name host17 ipv6-address ''
> show host name host17
...
name: "host17"
type: "host"
...
ipv4-address: "192.168.1.2"
ipv6-address: "2001:DB8::12"
...
Thank you for any ideas.