在virtualbox下centos修改配置静态ip

1.

 

2.

先看mac地址,08:00:27:58:D9:9A

image

vim /etc/udev/rules.d/70-persistent-net.rules

发现是eth9

image

cd /etc/sysconfig/network-scrips

cp ifcfg-eth0 ifcfg-eth9

vim ifcfg-eth9

如下:

DEVICE=eth9

HWADDR=….eth9的mac

TYPE=…原样

ONBOOT=yes

BOOTPROTO=static

IPADDR=…自己定义的ip

NETMASK=….子网掩码

image

service network restart

image

 

ifconfig

image

你可能感兴趣的:(在virtualbox下centos修改配置静态ip)