Linux set IP address and default gateway

Source: Internet
Author: User

1. Set the IP address

Open the terminal and get root privileges (sudo su). Enter the command:

# ifconfig eth0 192.168.0.20 netmask 255.255.255.0

Explanation: Ifconfig---set IP commands

Eth0---The network card to be set up, you can only enter Ifconfig to view the installed NIC

192.168.0.20---The pre-set IP value.

netmask 255.255.255.0---subnet mask

2. Set the default gateway

Open terminal, get root permission (sudo su), enter command:

# route add default GW 192.168.1.1

Explanation: Route Add---Add routing commands

Default GW---Increased routing items to the Defaults gateway

192.168.1.1---The IP address of the default gateway

3. Boot automatically set IP, gateway.

Linux boot will execute the/etc/init.d/rcs script, open the RCS script, the above two commands added to the script, the RcS file contents are as follows:

#! /bin/sh
#
# RcS
#
# call all S?? * Scripts in/etc/rcs.d/in numerical/alphabetical Order
#
Ifconfig eth0 192.168.0.20 netmask 255.255.255.0

Route add default GW 192.168.1.1
EXEC/ETC/INIT.D/RC S

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.