CentOS6靜態IP配置

2022-06-02 18:33:10 字數 944 閱讀 2378

在新裝系統後,需配置靜態ip

1、使用dhcp獲取ip

--檢視當前是否聯網

ifconfig

--取得當前ip,以及子網掩碼

netstat -rn

--獲取閘道器位址

以0.0.0.0開頭的行為預設閘道器位址

禁用dhcp和ipv6

service networkmanager stop

service ip6tables stop

chkconfig ip6tables off

chkconfig networkmanager off

靜態ip格式

device=eth0

bootproto=static

ipaddr=(ip位址)

netmask=(子網掩碼)

gateway=(閘道器位址)

onboot=yes

type=ethernet

重啟網絡卡

service network restart

配置後如果還是無法ping通外網,則檢查dns

檢視dns

cat /etc/resolv.conf

# generated by networkmanager

domain localdomain

search localdomain

nameserver 192.168.25.2(閘道器位址)

之後重啟網絡卡

service network restart

再測試ping外網

that's all

centOS6配置靜態IP

vim etc sysconfig network scripts ifcfg eth0 device eth0 bootproto static hwaddr 00 0c 29 c5 9d 1e ipv6init yes nm controlled yes onboot yes type ethe...

CentOS6配置靜態IP

centos6配置靜態ip 1.編輯網絡卡配置 vi etc sysconfig network scripts ifcfg eth0 device eth0 hwaddr 不需要改 type ethernet uuid 不需要改 onboot yes nm controlled yes bootp...

CentOS 6設定靜態IP教程

centos 6.3設定靜態ip教程 區域網裡有臺安裝有centos6.3的電腦,掉電或重啟,它的ip會被dhcp重新分配,如果要遠端控制這台電腦,不得不去開啟顯示器去檢視它的新ip,這樣太麻煩了。於是需要將這台電腦的ip設定成靜態的。1 找到 etc sysconfig network scrip...