Redhat與ubuntu配置網絡卡

2021-04-12 21:50:25 字數 1386 閱讀 2022

redhat linux中設定網絡卡固定ip

之前在xwindow下的redhat-config-network 設定網絡卡固定ip發現不起作用,設定好後就是ping不通。就查了些資料,更改 /etc/sysconfig/network-scripts/ifcfg-eth0(第乙個網絡卡為eth0),配置dns的檔案為 /etc/resolv.conf,我保留了dhcp的配置,配置完後用ifconfig eth0 down;ifconfig eth0 up 就可以了。以下是配置檔案的清單:

#/etc/sysconfig/network-scripts/ifcfg-eth0:

device=eth0

bootproto=static

broadcast=192.168.1.255

ipaddr=192.168.1.10

netmask=255.255.255.0

network=192.168.1.0

hwaddr=52:54:ab:2f:cf:f0

gateway=192.168.1.1

onboot=on

type=ethernet

#/etc/resolv.conf

nameserver 202.109.14.5

nameserver 202.96.209.5

search localdomain

或者使用命令:setup

或者:route add -net 192.168.1.50 netmask 255.255.255.0 dev eth0

或:ifconfig eth0 192.168.1.50 netmask 255.255.255.0

ubuntu 網絡卡設定,ip,mask,gateway,dns

sudo vi /etc/network/inte***ces

//這個應該是決定是否啟用這個埠

auto eth0

//靜態設定ip

iface eth0 inet static

address 172.16.146.200

netmask 255.255.255.0

#broadcast 172.16.146.255

gateway 172.16.146.254

//通過dhcp動態設定

iface eth0 inet dhcp

//設定dns伺服器

sudo vi /etc/resolv.conf

nameserver 202.96.128.68

nameserver 61.144.56.101

nameserver 192.168.8.220

//重新設定網路,以啟用新設定

sudo /etc/init.d/networking restart

//ok

Redhat與ubuntu配置網絡卡

redhat linux中設定網絡卡固定ip 之前在xwindow下的redhat config network 設定網絡卡固定ip發現不起作用,設定好後就是ping不通。就查了些資料,更改 etc sysconfig network scripts ifcfg eth0 第乙個網絡卡為eth0 配...

Redhat6 yum 安裝與配置

由於centos是從redhat演化而來的免費linux版本,因此可以利用centos的yum更新源來實現rhel5的yum功能。配置方法如下 檢查yum是否安裝,預設情況下都是安裝好的,總共4各包。root linux a rpm qa grep yum yum metadata parser 1...

Redhat 8 0 0 安裝與網路配置

red hat enterprise linux8.0.0 安裝與網路配置 1 載入iso 裝置後的安裝頁面 選擇 install 2 安裝語言選擇 3 軟體選擇,裡面包含很多版本,如伺服器版,桌面版等 請按照實際需求進行安裝,為了安裝kvm虛擬機器這裡選擇軟體裡的 virtual 4 安裝位置的配...