LINUX 管理網路

2021-08-15 01:17:13 字數 3634 閱讀 7195

1.ip基礎知識

1)ipv4

2進製32位-----10進製

172.25.0.10/255.255.255.0

255.255.255.0:子網掩碼

子網掩碼255位對應的ip位為網路位

子網掩碼0對應的ip位為主機位

2.配置ip

《圖形化》

1.圖形介面

nm-connection-editor

設定:刪除原有的並重新新增

2.文字化圖形

nmtui

設定:

《命令》

ifconfig 網絡卡 ip netmask    ##臨時設定

nmcli connection add type ethernet con-name westos ifname eth0 autoconnect yes #新增dhcp網路

nmcli connection add type ethernet con-name westos ifname eth0 ip4 ip/24    #新增靜態網路

nmcli connection delete westos                        #刪除westos鏈結

nmcli connection show                             #顯示所有網路鏈結

nmcli connection down westos                            #關閉指定鏈結

nmcli connection up westos                            #開啟指定鏈結

nmcli connection modify "westos" ipv4.addresses newip/24            #改變wetos的ip

nmcli connection modify "westos" ipv4.method #改變westos的工作方式為動態或者靜態

nmcli device connect eth0                            #開啟裝置

nmcli device disconnect eth0                            #關閉裝置

nmcli device show                                 #顯示裝置資訊

nmcli device status                                #顯示裝置狀態

《檔案》

dhcp            ##動態獲取

vim /etc/sysconfig/network-scripts/ifcfg-eth0

device=eth0        ##介面使用裝置

bootproto=dhcp    ##網絡卡工作模式

onboot=yes        ##網路服務開啟時自動啟用

name=eth0        ##網路介面名稱

static|none             ##靜態網路

vim /etc/sysconfig/network-scripts/ifcfg-eth0

device=eth0             ##裝置

bootproto=static|none         ##裝置工作方式

onboot=yes             ##開啟網路服務啟用裝置

name=eth0             ##網路介面名稱

ipaddr=172.25.0.100         ##ip

netmask=255.255.255.0 | prefix=24 ##子網掩碼

3.gateway 閘道器

1)路由器

主要功能是用來作nat的

dnat    目的地位址轉換

snat    源位址轉換

2)閘道器

路由器上和自己處在同乙個網段的那個ip

3)設定閘道器

systemctl stop     netwrokmanager

vim /etc/sysconfig/network    ##全域性閘道器

gateway=閘道器ip

vim /etc/sysconfig/network-scripts/ifcfg-網絡卡配置檔案 ##網絡卡介面閘道器

gateway=閘道器ip

systemctl restart netwrok

兩種方法設定閘道器都可生效,但同時存在時以網絡卡配置檔案裡的為準

route -n            ##查詢閘道器

kernel ip routing table

destination     gateway         genmask         flags metric ref    use iface

0.0.0.0   (閘道器)172.25.0.254    0.0.0.0         ug    0      0        0 eth0

172.25.0.0      0.0.0.0         255.255.255.0   u     0      0        0 eth0

4.dns####

1)dns

dns是一台伺服器

這台伺服器提供了回答客戶主機名和ip對應關係的功能

2)設定dns

vim /etc/resolv.conf

nameserver dns伺服器ip

3)本地解析檔案

vim /etc/hosts

手動新增

4)本地解析檔案和dns讀取的優先順序調整

/etc/nsswitch.conf

38 #hosts:     db files nisplus nis dns

39 hosts:      files dns        ##files代表本地解析檔案,dns代表dns伺服器,那個在前面那個優先

Linux學習 管理網路

管理網路 1.ip基礎知識 1 ipv4 2進製32位 10進製 172.25.0.10 255.255.255.0 255.255.255.0 子網掩碼 子網掩碼255位對應的ip位為網路位 子網掩碼0對應的ip位為主機位 2 配置ip 1 圖形介面 2 檔案方式配置 a.動態 dhcp 動態獲取...

管理網路檔案

管理網路檔案 網路配置目錄 etc sysconfig network scripts hwaddr 52 54 00 00 00 oa mac位址 type ethernet 網路型別 bootproto none static dhcp 網路裝置的工作方式 靜態 靜態 動態 ipaddr0 17...

網路管理 網路配置

基本網路配置 1 主機名 不能用來通訊,管理人員標識用 2 ip netmask 2 路由 預設閘道器 4 dns fdqn 全稱網域名稱 一 配置當前網路主機名 centos 6 hostname hostname vim etc sysconfig network hostname centos...