網路相關屬性的配置命令

2021-09-21 08:06:35 字數 3004 閱讀 6634

網路相關屬性的配置

ip位址

arp 位址解析協議

rarp

反向位址解析

a:10.0.0.0/8

b:172.16.0.0/16--172.31.0.0/16

c:192.168.0.0/24--192.168.255.0/24

routing:

靜態路由

:用於手動指定

動態路由:

rip,ospf,eigrp

兩類路由:

主機路由、

網路路由

ip,gateway 

的配置;

網路裝置兩類:

1、ethernet: 

乙太網在linux中用:

eth0,eth1....ethx 

其配置檔案是:

/etc/sysconfig/network-scripts/ifcfg-ethx

2、ppp:

ppp0, ppp1 .... pppx

配置檔案:

/etc/syscofig/network-scripts/ifcfg-pppx

用乙太網為例

ethernet有三種方式:

1、運用命令方式:

#ifconfig

ifconfig –a 

可檢視所有的網路以及隱藏的網路裝置。

ifconfig ethx 

檢視ethx

的資訊。

#ifconfig ethx ip/netmask  

配置之後立即生效但是臨時有效

**pcalc 

計算ip

位址的netmask

ifconfig

只顯示up

狀態的ethx

ifconfig ethx

#iplink:

ip link show   ethx 

顯示ethx

的資訊

ip link set    

設定ip addr  show 

顯示ip

位址

ip addr add 

新增位址

ip addr del 

刪除位址

dev ethx 2

gui

system-config-network-gui

在圖形介面

system-config-network-tui

在圖形介面下才能實現

setup 

可進入

ifdown:關閉 

ifup:開啟 

#service network restart 

這個命令可重啟網路服務

3、編輯配置檔案:

vim /etc/sysconfig/network-scipts/ifcfg-ethx

device=ethx

bootproto=

onboot=

是否啟用

hwaddr=

實體地址

ipaddr=ip位址

netmask=

網路掩碼

type=ethernet

gateway=

指定閘道器

userctl=

普通使用者是否進入網

vim卡

peerdns=

第一種方式是臨時有效,第

二、三種是永久有效的配置方式。

檢視路由的三個命令: 

route -n

netstat -nr

ip route list

route -n 使用

route

命令配置路由

新增路由

route add -host|-net destination netmask mask gw gateway dev ethx

service network restart

route add default gw 

指定預設閘道器

ethx

在同乙個網路之內

route del -host|-net target netmask mask

這些是命令配置並不能永久有效。

dns 伺服器指向:

在配置檔案/etc/resolv.conf中

nameserver 202.102.224.68  

最多指定

3 個

而且最快的放在最上面

nameserver ...

nameserver ...

主機名稱的指定:

hostname

#cat /proc/sys/kernel/hostname

指定:#hostname hostname

#echo "hostname"> /proc/sys/kernel/hostname

編輯配置檔案:

/etc/sysconfig/network

networking=

gateway=

hostname=

在配置檔案/etc/hosts中可以配置:

ip fqdn alias

通過網絡卡別名網絡卡給配置多個位址

1、使用命令:#ifconfig eth1:0 10.0.0.1/24

2、編輯配置檔案:  #vim /etc/sysconfig/network-scripts/ifcfg-eth1:0

如何讓指定的靜態路由永久有效

route add -host|-net

編輯配置檔案/etc/sysconfig/network-scripts/route-eth0

內容支援兩種路由定義的格式:

1 、network/netmask via gateway 2、

address0=

netmask0=

gatewary0=

以上就是網路相關屬性的一些簡單的配置說明。

ifcfg系列命令配置網路屬性

linux網路屬性配置 將linux接到網路中的方式 1 本地通訊 配置ip natmask 2 跨網路通訊 配置路由 閘道器 linux配置網路的方式 1 靜態指定 1 指定命令,只對當前系統有效 1 ifcfg家族 ifconfig 配置ip,netmask route 路由 netstat 狀...

網路相關配置

1 臨時配置網路 ip,閘道器,dns 永久配置 臨時配置 永久配置 dhcp必須改成static,但是我不想改 關防火牆 systemctl stop firewarlld systemctl disable firewalld 關閉selinux vim etc sysconfig selinu...

網路相關配置

1.臨時配置網路 ip,閘道器,dns 永久配置 設定ip ifconfig en016777736 192.168.2.3 設定dns vim etc resolv.conf nameserver 202.106.0.20 設定閘道器 route adddefaultgw 192.168.2.35...