ubuntuで仮想ネットワークを追加して、複数IPを設定する
設定方法:
1.ネットワーク設定ファイルを変更
sudo vim /etc/network/interfaces
2.次の内容を追加して保存する
auto eth0:0
iface eth0:0 inet static
address 172.16.21.100
netmask 255.255.255.0
3.再起動
sudo /etc/init.d/networking restart
Coding Changes the World
設定方法:
1.ネットワーク設定ファイルを変更
sudo vim /etc/network/interfaces
2.次の内容を追加して保存する
auto eth0:0
iface eth0:0 inet static
address 172.16.21.100
netmask 255.255.255.0
3.再起動
sudo /etc/init.d/networking restart