10.11 Linux網絡相關

linux網絡相關

  • ifconfig查看網卡ip(yum install net-tools)
  • ifup ens33/ifdown ens33
  • 設定虛擬網卡ens33:1
  • mii-tool ens33 查看網卡是否鏈接
  • ethtool ens33 也能夠查看網卡是否鏈接
  • 更改主機名 hostnamectl set-hostname aminglinux
  • DNS配置文件/etc/resolv.conf
  • /etc/hosts文件

ifconfig命令

  • 在centos7中,只能只用默認的 ip addr命令查看IP
  • ifconfig命令,查看網卡IP
    • 在centos6中是默認就存在的
    • 在centos7中則須要安裝——>yum install net-tools
[root@localhost ~]# ifconfig
eno16777736: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.202.130  netmask 255.255.255.0  broadcast 192.168.202.255
        inet6 fe80::20c:29ff:feff:458f  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:ff:45:8f  txqueuelen 1000  (Ethernet)
        RX packets 3131  bytes 295354 (288.4 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 345  bytes 37930 (37.0 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 0  (Local Loopback)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

[root@localhost ~]# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eno16777736: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 00:0c:29:ff:45:8f brd ff:ff:ff:ff:ff:ff
    inet 192.168.202.130/24 brd 192.168.202.255 scope global eno16777736
       valid_lft forever preferred_lft forever
    inet6 fe80::20c:29ff:feff:458f/64 scope link 
       valid_lft forever preferred_lft forever
[root@localhost ~]#
  • ifconfig命令和ip addr命令,相互比較
    • 二者顯示的效果是相同的
      • ifconfig命令,顯示的更加 清爽
      • ip add命令,看起來比較亂

ifconfig命令 參數 -a

  • ifconfig -a 表示當你的網卡dang掉的時候(沒有ip的時候,就不會顯示網卡),但在加上-a參數後,就可查看到

ifup/ifdown命,啓動/關閉網卡

  • ifup eno16777736 啓動網卡
  • ifdown eno16777736 關閉網卡
  • 如果在終端設置網卡,則須要兩個命令同時進行(不然,在終端關閉網卡後,就須要在本機上重啓網卡了)
    • ifdown eno16777736 && ifup eno16777736
[root@localhost ~]# ifdown eno16777736 && ifup eno16777736  //關閉網卡後並從新啓動網卡
Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/5)
[root@localhost ~]#

增長虛擬的網卡,而後給虛擬網卡設定IP

  • 需求
    • 增長虛擬的網卡,而後給虛擬網卡設定IP
  • 作法:
  1. 首先到網卡配置文件裏拷貝下
[root@localhost ~]# cd /etc/sysconfig/network-scripts/
[root@localhost network-scripts]# ls
ifcfg-eno16777736  ifdown-isdn      ifdown-tunnel  ifup-isdn    ifup-Team
ifcfg-lo           ifdown-post      ifup           ifup-plip    ifup-TeamPort
ifdown             ifdown-ppp       ifup-aliases   ifup-plusb   ifup-tunnel
ifdown-bnep        ifdown-routes    ifup-bnep      ifup-post    ifup-wireless
ifdown-eth         ifdown-sit       ifup-eth       ifup-ppp     init.ipv6-global
ifdown-ippp        ifdown-Team      ifup-ippp      ifup-routes  network-functions
ifdown-ipv6        ifdown-TeamPort  ifup-ipv6      ifup-sit     network-functions-ipv6
[root@localhost network-scripts]# cp ifcfg-eno16777736 ifcfg-eno16777736\:0    //增長反斜槓就爲了脫義冒號
  1. 而後進入到編輯文件
[root@localhost network-scripts]# vi !$
vi ifcfg-eno16777736\:0

更改其中的網卡名稱和IP、DNS1和網關GATEWAY均可刪除(可刪除)
將NAME=eno16777736名稱更改成NAME=eno16777736:0——>配置文件中的 冒號 ,就不須要脫義了
添加DEVICE=eno16777736:0——>這一步若不添加,個人虛擬網卡實現不了
將IP地址IPADDR=192.168.202.130更改成192.168.202.150(這裏面的ip可隨意更改)
DNS1和網關GATEWAY均可刪除(可刪除)——>由於已經有了DNS和網關GATEWAY了

而後退出保存
  1. 這時關閉,重啓網卡,而後在查看,就會看到虛擬網卡的存在
[root@localhost network-scripts]# ifdown eno16777736 && ifup eno16777736
Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/Act
[root@localhost network-scripts]# ifconfig
eno16777736: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.202.130  netmask 255.255.255.0  broadcast 192.168.202.255
        inet6 fe80::20c:29ff:feff:458f  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:ff:45:8f  txqueuelen 1000  (Ethernet)
        RX packets 4180  bytes 393171 (383.9 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 982  bytes 138704 (135.4 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

eno16777736:0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.202.150  netmask 255.255.255.0  broadcast 192.168.202.255
        ether 00:0c:29:ff:45:8f  txqueuelen 1000  (Ethernet)

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 0  (Local Loopback)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

[root@localhost network-scripts]#
  1. 這時在本身的window物理機上去ping 192.168.202.150,會發現能夠鏈接虛擬網卡的IP

輸入圖片說明

  • 在lvs和keepalived的時候,會使用到虛擬網卡

mii-tool命令查看網卡是否鏈接網線

  • 一臺服務器,鏈接了網線,如今我要知道這個網卡有沒有插着網線,我本身自己不肯定
    • 在機房中,能夠查看網卡燈是否亮着
    • 但在系統中,可使用mii-tool eno16777736 命令查看是不是link ok
  • 格式:mii-tool 網卡名稱 查看網卡是否鏈接網線
[root@localhost ~]# mii-tool eno16777736
eno16777736: negotiated 1000baseT-FD flow-control, link ok
[root@localhost ~]#
  • 這裏若顯示爲 link ok 或者 no link ——>另外會有些機器不支持,提示not support
    • 這時候就可使用另一個命令查看ethtool eno16777736
      • 查看最底部 Link detected 是否爲 yes

hostnamectl命令更改主機名

  • hostnamectl命令,更改主機名
    • centos6中,不支持該命令
[root@localhost ~]# hostnamectl set-hostname hanfeng-001
[root@localhost ~]# hostname    //在當前終端下,使用hostname命令,查看主機名
hanfeng-001
[root@localhost ~]# 

但會發主機名並無當即生效,須要退出從新登陸終端,或者進入一個子shell(輸入一個bash便可)
[root@localhost ~]# bash
[root@hanfeng-001 ~]#         //就會看到主機名變動了

主機名配置文件存放位置

  • 主機名的配置文件存放位置 /etc/hostname
[root@hanfeng-001 ~]# cat /etc/hostname
hanfeng-001
[root@hanfeng-001 ~]#

DNS配置文件存放位置

  • DNS配置文件存放位置 /etc/resolv.conf
[root@hanfeng-001 ~]# cat /etc/resolv.conf
# Generated by NetworkManager
nameserver 119.29.29.29
[root@hanfeng-001 ~]#
  • 谷歌的DNS爲8.8.8.8
  • 咱們在更改DNS的時候,只須要去更改網卡配置文件便可/etc/sysconfig/network-scripts/ifcfg-eno16777736
    • 固然也能夠臨時的編輯 /etc/resolv.conf 這個文件。可是更改/etc/resolv.conf 文件以後 ,在咱們重啓網卡後,它依舊會被網卡里面的配置文件 DNS 所覆蓋

/etc/hosts文件

  • /etc/hosts這個文件是linux和window中都有的一個文件
  • 格式:左邊是IP ,右邊是域名
    • 支持一個IP,配多個域名(用 格 分開便可)
    • 如果一個域名,有多個IP,則會 之後面的生效——>如果前面有,後面也有,則之後面的爲主
[root@hanfeng-001 ~]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
[[root@hanfeng-001 ~]# ping www.qq123.com
PING www.qq123.com (202.91.250.93) 56(84) bytes of data.
64 bytes from 202.91.250.93: icmp_seq=1 ttl=128 time=11.6 ms
64 bytes from 202.91.250.93: icmp_seq=2 ttl=128 time=11.3 ms
64 bytes from 202.91.250.93: icmp_seq=3 ttl=128 time=11.7 ms
64 bytes from 202.91.250.93: icmp_seq=4 ttl=128 time=11.8 ms
^C
--- www.qq123.com ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3005ms
rtt min/avg/max/mdev = 11.363/11.652/11.811/0.172 ms
[root@hanfeng-001 ~]#
  • 其中的202.91.250.93是一個公網IP,我想在我本機不須要訪問到這個IP
    • 編輯/etc/hosts文件
[root@hanfeng-001 ~]# vim /etc/hosts

在/etc/hosts文件添加    192.168.202.150 www.qq123.com

[root@hanfeng-001 ~]# ping www.qq123.com
PING www.qq123.com (192.168.202.150) 56(84) bytes of data.
64 bytes from www.qq123.com (192.168.202.150): icmp_seq=1 ttl=64 time=0.100 ms
64 bytes from www.qq123.com (192.168.202.150): icmp_seq=2 ttl=64 time=0.045 ms
64 bytes from www.qq123.com (192.168.202.150): icmp_seq=3 ttl=64 time=0.042 ms
^C
--- www.qq123.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2000ms
rtt min/avg/max/mdev = 0.042/0.062/0.100/0.027 ms
[root@hanfeng-001 ~]#
  • 這裏會發現直接解析到192.168.202.150這個IP這個IP上——>只在本機上生效
    • 在window上是無效的
相關文章
相關標籤/搜索