Sinsing Analysis of Linux auto-get IP settings

Source: Internet
Author: User
Tags get ip

The first step is to activate the network card, usually the system is installed after the default network card is eth0, we only need to use ifconfig eth0 up to activate it.

The second step is to set the network card into the system to start, we use Chkconfig--level 2345 Network on it.

The third step is to modify the network card file, we only need to set the value of Onboot is true, set the value of Bootproto is DHCP, where onboot is to let the network service start using the NIC, and Bootproto is to let the NIC from the DHCP server automatically obtain the IP address.

This NIC file is usually located in/etc/sysconfig/network-scripts/ifcfg-eth0, which we usually set as follows:

Vi/etc/sysconfig/network-scripts/ifcfg-eth0 ONBOOT=YESBOOTPROTO=DHCP
Then we can use service network start to start the network.

For static IP address configuration We give an example:

Device=eth0ipaddr=192.168.1.100netmask=255.255.255.0gateway=192.168.1.1dns=8.8.8.8bootproto=staticonboot=yes


Sinsing Analysis of Linux auto-get IP settings

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.