interface management (tpvm mode)

Configures the static IPv4/IPv6 address and gateway on the TPVM's management interface (eth0).

Syntax

interface management ip { dhcp | ipv4-address/net-mask [ gw gw-ip-address ] }
interface management ipv6 { dhcpv6 | ipv6-address/length [ gw gw-ipv6-address ] }
no interface management ip { dhcp | ip-address [ gw gw-ip-address ] }
no interface management ipv6 { dhcpv6 | ipv6-address/length [ gw gw-ipv6-address ] }

Parameters

dhcp
Indicates that the IPv4 address of the management interface is assigned by DHCP.
ip-address/net-mask
Configures the static IPv4 address of the management interface and its net-mask.
gw gw-ip-address
The interface gateway IPv4 address.
dhcpv6
Indicates the that IPv6 address of the interface is assigned by IPv6 DHCP.
ipv6-address/length
Configures the static IPv6 address of the management interface along with the prefix length.
gw gw-ipv6-address
The interface gateway IPv6 address. The IPv6 interface gateway address can also be dynamiacally configured when tpvm is running.

Modes

TPVM Configuration mode

Examples

The following example shows how to configure a static IPv4 address and default gateway for the TPVM management interface eth0.

SLX (config-tpvm-TPVM)# interface management ip ?
Possible completions:
  <A.B.C.D/Y>   IPv4 address/netmask
  dhcp          Enable dhcp to configure ip
SLX(config-tpvm-TPVM)# interface management ip 10.9.9.24/24 ?
Possible completions:
  gw                      Interface gateway address
  <cr>
SLX (config-tpvm-TPVM)# interface management IP 10.9.9.24/24 gw ? 
Possible completions:
  <A.B.C.D/Y>   IPv4 address/netmask
SLX (config-tpvm-TPVM)# interface management IP 10.9.9.24/24 gw 10.9.9.2
SLX (config-tpvm-TPVM)#

The following example shows how to configure DHCP on the TPVM management interface eth0 .

SLX (config-tpvm-TPVM)# interface management ip 
Possible completions:
  <A.B.C.D/Y>   IPv4 address/netmask
  dhcp          Enable dhcp to configure ip
SLX(config-tpvm-TPVM)# interface management ip dhcp
SLX (config-tpvm-TPVM)#

The following example shows how to configure the static IPv6 address and default gateway for the TPVM management interface eth0.

SLX(config-tpvm-TPVM)# interface management ipv6 ?
Possible completions:
  <A:B::C:D/length>     The IPv6 Address/Prefix length
  dhcp                        Enable dhcp to configure IP
SLX (config-tpvm-TPVM)# interface management ipv6 2002:2002::2002:2002 gw 1001:1001::1000:0001
SLX (config-tpvm-TPVM)#

The following example shows how to configure DHCPv6 on the TPVM management interface eth0.

SLX(config-tpvm-TPVM)# interface management ipv6 ?
Possible completions:
  <A:B::C:D/length>     The IPv6 Address/Prefix length
  dhcpv6                        Enable dhcp to configure IP
SLX(config-tpvm-TPVM)# interface management ipv6 dhcpv6 
SLX(config-tpvm-TPVM)#