インターフェイスへIPアドレスを割り当てる 次項 » « 前項



コマンド

IPアドレスの割り当て
ip address [ IPアドレス ] [ サブネットマスク ]
デフォルト
コマンドモード
なし
インターフェイスコンフィギュレーションモード

初期値

  • なし IPアドレス未割当

想定シナリオ

  • デフォルトVLAN1に192.168.1.1/24を割り当て
  • VLAN10を作成し、192.168.2.1/24を割り当て
  • マネージメントポートに10.0.0.1/8を割り当て

設定例

FXC#
FXC(config)#
FXC(config-if-VLAN 1)#
FXC(config-if-VLAN 1)#
FXC(config)#
FXC(config-vlan)#
FXC(config)#
FXC(config-if-VLAN 10)#
FXC(config-if-VLAN 10)#
FXC(config)#
FXC(config-if-Mgmt 0)#
FXC(config-if-Mgmt 0)#
FXC(config)#        
configure terminal
interface vlan 1
ip address 192.168.1.1 255.255.255.0
exit
vlan 10
exit
interface vlan 10
ip address 192.168.2.1 255.255.255.0
exit
interface mgmt 0
ip address 10.0.0.1 255.0.0.0
exit


VLAN1にIPアドレス192.168.1.1/24を割り当て

VLAN10の作成


VLAN10にIPアドレス192.168.2.1/24を割り当て


マネージメントポートにIPアドレス10.0.0.1/8を割り当て



備考

  • IPアドレス入力時のサブネットマスクの指定はCIDR表記も可能
  • 以下2文は同じ意味となる
  •   FXC(config-if-VLAN 1)#ip address 192.168.1.1 255.255.255.0
  •   FXC(config-if-VLAN 1)#ip address 192.168.1.1/24

関連コマンド

  • IPアドレスの確認
  •   show ip interface

  • IPアドレスの削除
  •   (指定のインターフェイスで)no ip address