Analysis of two implementation methods for adding static routing in Linux

Analysis of two implementation methods for adding static routing in Linux

Command to add a route:

1.Route add

route add -net 192.56.76.0 netmask 255.255.255.0 dev eth0 #Add a static route
route add default gw 192.168.0.1 #Add a default route
route del -net 192.168.1.0 /24 gw 192.168.0.1 #Delete a route
route -n # View the routing table

2.ip ro add

ip ro add 192.56.76.0 /24 dev 192.168.0.1 #Add a static route
ip ro add default via 192.168.0.1 dev eth0 #Add a default route
ip ro del 192.168.1.0/24 #Delete a route ip route show #View the routing table

Common parameters:

  • ​ add Add route
  • ​ del Delete route
  • ​ via gateway egress IP address
  • dev Gateway export physical device name

Let the route still take effect after restarting the server:

1. Add in /etc/rc.local:

The command to add a route is: directly copy the command in the command line operation to the file, save and exit.

2. Write in the /etc/sysconfig/static-routes file:

If the file does not exist, create it manually and add the following content:

Refer to the shell statement in the /etc/init.d/network file:

# Add non interface-specific static-routes.
if [ -f /etc/sysconfig/static-routes]; then grep "^any" /etc/sysconfig/static-routes | while read ignore args;
do /sbin/route add -$args
done
fi

Then, if you want to add a static route, the command is:

route add -net 192.56.76.0 netmask 255.255.255.0 dev eth0

Then, add the following format to the /etc/sysconfig/static-routes file:

any net 192.56.76.0 netmask 255.255.255.0 dev eth0

or

any net 192.56.76.0 netmask 255.255.255.0 gw 192.168.1.1

Comparison of two ways to add static routes:

1.rc.local:

Restart the server to take effect;

If you restart the network service, the static route will become invalid;

rc.local is the last script to be run after the system is started, so if a service such as NFS requires a network connection to be mounted, this method is not suitable.

2.static-routes:

Restart the server to take effect;

Restart the network service to take effect:

Suitable for services that require network requirements;

The script method of adding static routing is similar to rc.local:

This method is actually to write your own script, put it at the beginning of /etc/rc3.d/ and set it to S.

S means start, the numbers are the sequence, and K means stop.

Generally, startup is the startup sequence of the daemon process in a certain mode.

The smaller the number, the earlier the startup order;

/etc/rc3.d is a text multi-user environment, which is generally used in production environments.

**If you need to add static routes, try to add the static routes to the /etc/sysconfig/static-routes file. Avoid routing failure due to restarting network services, thereby avoiding failures. **

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of routing configuration in Linux system with multiple network cards
  • How to use Crontab to access a certain routing address regularly in Linux
  • How to modify IP, DNS and routing command line configuration in Linux
  • A detailed introduction to Linux routing table
  • How to add permanent static routing in Linux
  • Building a Router with Linux
  • A LINUX soft router that supports hybrid multi-line access
  • Using Linux as a router in an enterprise network

<<:  Mysql database scheduled backup script sharing

>>:  React's component collaborative use implementation

Recommend

12 Laws of Web Design for Clean Code [Graphic]

Beautiful code is the foundation of a beautiful we...

Nginx Location Configuration Tutorial from Scratch

Basics The matching order of location is "ma...

Explanation of the process of docker packaging node project

As a backend programmer, sometimes I have to tink...

Use JavaScript to create page effects

11. Use JavaScript to create page effects 11.1 DO...

Implementation of mysql backup strategy (full backup + incremental backup)

Table of contents Design scenario Technical Point...

How to deploy redis in linux environment and install it in docker

Installation Steps 1. Install Redis Download the ...

Detailed steps to install Anaconda on Linux (Ubuntu 18.04)

Anaconda is the most popular python data science ...

Let's talk in detail about the direction of slow SQL optimization in MySQL

Table of contents Preface SQL statement optimizat...

The implementation process of long pressing to identify QR code in WeChat applet

Preface We all know that the QR codes in official...

Solution to nacos not being able to connect to mysql

reason The mysql version that nacos's pom dep...

Solution to Ubuntu cannot connect to the network

Effective solution for Ubuntu in virtual machine ...

Call and execute host docker operations in docker container

First of all, this post is dedicated to Docker no...

A brief discussion on size units in CSS

The compatibility of browsers is getting better a...

Vue implements tree table through element tree control

Table of contents Implementation effect diagram I...