Forum Discussion

NoelMcK_381487's avatar
NoelMcK_381487
Icon for Nimbostratus rankNimbostratus
Jan 17, 2019

Cmds to remove configuration on LTMs

Hi, Does anyone know what the exact cmds are to remove/default the following config inside a bigip_base.conf? Basically its to remove using the command line the Transit vlan. This is part of a cluster of 2x 2000 LTMs. The ref guides are not that great at this level.

 

net interface 1.2 { disabled media-fixed 100TX-FD }

 

net route-domain /Common/0 { id 0 vlans { /Common/Transit /Common/Ext /Common/http-tunnel /Common/socks-tunnel }

 

net self /Common/10.1.1.1 { address 10.1.1.1/29 allow-service all traffic-group /Common/traffic-group-1 vlan /Common/Transit } net self /Common/10.1.1.2 { address 10.1.1.2/29 allow-service { default } traffic-group /Common/traffic-group-local-only vlan /Common/Transit }

 

2 Replies

  • You can’t remove interface and common route domain.

    But to remove self ips, here are commands

    delete net self /Common/10.1.1.1 
    delete net self /Common/10.1.1.2
    
  • To remove the Transit vlan from the route domain, try this:

    tmsh modify net route-domain 0 vlans delete { Transit }