Basic network management knowledge of Linux operating system

Basic network management knowledge of Linux operating system

Today's notes are mainly about the basic knowledge of Linux operating system.

Network Management

(1) Check network status

In Linux, ifconfig, route and netstat are often used to check the network status. They are .net-tools tools. Let me use them below.

Let me talk about ifconfig and route.

There are many network card interfaces in our Linux, such as eth0, the first network card network interface, eno1, the onboard network card, and ens33, the PCI-E network card. CentOS 7 uses consistent network device naming. If none of the above matches, eth0 is used.

  1. [root@node01 ~]# ifconfig eth0
  2. eth0: error fetching interface information: Device not found
  3. [root@node01 ~]# ifconfig ens33
  4. ens33: flags = 4163 < UP ,BROADCAST,RUNNING,MULTICAST > mtu 1500
  5. inet 192.168.92.90 netmask 255.255.255.0 broadcast 192.168.92.255
  6. inet6 fe80::b889:1772:c306:ef8f prefixlen 64 scopeid 0x20 < link >  
  7. ether 00:0c:29:07:43:5a txqueuelen 1000 (Ethernet)
  8. RX packets 910 bytes 954985 (932.6 KiB)
  9. RX errors 0 dropped 0 overruns 0 frame 0
  10. TX packets 450 bytes 38942 (38.0 KiB)
  11. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

(2) Network configuration file

ifcfg-eth0, /etc/hosts

When configuring hadoop and elasticsearch clusters, you need to configure the cluster IP and host name in /etc/hosts. Sometimes you cannot ping Baidu, maybe the domain name cannot be resolved, you need to configure it in /etc/sysconfig/network-scripts/ifcfg-eth0

  1. [root@node01 ~]# vim /etc/sysconfig/network
  2. #########
  3. HOSTNAME = node01  
  4. [root@node01 ~]# vim /etc/hosts
  5. #########
  6. 192.168.92.90 node01
  7. 192.168.92.91 node02
  8. 192.168.92.92 node03
  9.  
  10. [root@node01 ~]# Configure DNS, domain name resolution service
  11. [root@node01 ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0
  12. DNS1 = 202.106.0.20
  13. DNS2 = 8.8.8.8

(3) Troubleshooting commands

First, ping Baidu: Check whether the target machine's network is accessible

  1. maoli@ubuntu:~$ ping baidu.com
  2. PING baidu.com (220.181.38.148) 56(84) bytes of data.
  3. 64 bytes from 220.181.38.148: icmp_seq = 1   ttl = 128   time = 49.6 ms
  4. 64 bytes from 220.181.38.148: icmp_seq = 2   ttl = 128   time = 48.2 ms
  5. ^C
  6. --- baidu.com ping statistics ---
  7. 2 packets transmitted, 2 received, 0% packet loss, time 1001ms
  8. rtt min/avg/max/ mdev = 48.223 /48.948/49.673/0.725 ms

traceroute

  • nslookup: nslookup www.baidu.com Server is the IP address corresponding to the domain name
    1. maoli@ubuntu:~$ nslookup www.baidu.com
    2. Server: 127.0.1.1
    3. Address: 127.0.1.1#53
    4.  
    5. Non-authoritative answer:
    6. www.baidu.com canonical name = www.a.shifen.com .
    7. Name: www.a.shifen.com
    8. Address: 182.61.200.6
    9. Name: www.a.shifen.com
    10. Address: 182.61.200.7
  • Telnet: If the IP is reachable, but the service still has problems, you can use telnet to check the service port status
  • tcpdump: tcpdump -i any -n port 80 # Capture all network card (any) port 80 data packets and display them in ip format (-n)
    1. maoli@ubuntu:~$ sudo tcpdump -i any -n port 80 -n
    2. tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
    3. listening on any, link-type LINUX_SLL (Linux cooked), capture size 262144 bytes
    4. 10:28:11.003675 IP 192.168.92.1.53951 > 192.168.92.135.80: Flags [S], seq 185886164, win 64240, options [mss 1460,nop,wscale 8,nop,nop,sackOK], length 0
    5. 10:28:11.003875 IP 192.168.92.135.80 > 192.168.92.1.53951: Flags [S.], seq 2863640054, ack 185886165, win 64240, options [mss 1460,nop,nop,sackOK,nop,wscale 7], length 0
    6. 10:28:11.004114 IP 192.168.92.1.53951 > 192.168.92.135.80: Flags [.], ack 1, win 4106, length 0
    7. 10:28:11.010472 IP 192.168.92.1.53951 > 192.168.92.135.80: Flags [P.], seq 1:476, ack 1, win 4106, length 475: HTTP: GET /sqli-labs/ HTTP/1.1
  • tcpdump -i any -n host 10.0.0.1 and port 80# Capture the data packets between port 80 of all network cards and 10.0.0.1, and display them in IP format
  • netstat Check whether the service listening port status is correct -n Display IP address -t TCP protocol -p Display the process corresponding to the port -l TCP listening status (listen) -ntpl Check the port opening status
    1. maoli@ubuntu:~$ sudo netstat -ntlp
    2. Activate Internet connection (server only)
    3. Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
    4. tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1111/sshd
    5. tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 14200/cupsd
    6. tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 1148/mysqld
    7. tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN 1165/redis-server 1
    8. tcp 0 0 127.0.1.1:53 0.0.0.0:* LISTEN 1285/dnsmasq
    9. tcp6 0 0 :::22 :::* LISTEN 1111/sshd
    10. tcp6 0 0 ::1:631 :::* LISTEN 14200/cupsd
    11. tcp6 0 0 :::9000 :::* LISTEN 2234/docker-proxy
    12. tcp6 0 0 :::80 :::* LISTEN 1842/apache2

(4) Network service management

There are two types of network service management programs, SysV and systemd. Systemd has now basically replaced SysV's Init.

(5) Set static IP

When building any cluster, you need to set a static IP.

  1. [root@node01]# vim /etc/sysconfig/network-scripts/ifcfg-ens33
  2.  
  3. ################
  4. BOOTPROTO = static  
  5. ONBOOT = "yes"  
  6. # The gateway address depends on the system's network
  7. GATEWAY = 192.168.92.2
  8. # Set the static ip
  9. IPADDR = 192.168.92.92
  10. NETMASK = 255.255.255.0
  11. # Configure DNS server
  12. DNS1 = 8.8.8.8
  13. DNS2 = 8.8.4.4

<<:  Goodbye, 2G/3G is retiring

>>:  When 5G meets edge cloud, it is the fundamental reason why 5G changes the world

Recommend

What is the difference between FTP and SFTP?

In actual project development, the most commonly ...

How to Choose the Right Data Cabling for Your Business

Are you building a new office? Is your current of...

HTTP/[0.9 | 1.0 | 1.1 | 2 | 3]

[[379542]] This article is reprinted from the WeC...

Embedded CAN Bus Introduction (Low-Level Details)

[[377418]] 1. Introduction CAN bus was developed ...

5G "new infrastructure", new scenarios, new models

Since the beginning of the year, the central gove...