Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Copy the network interface MAC address as displayed in the "ifconfig"  command output after the attribute "ether"

  2. change directory to /etc/sysconfig/network-scripts

    Code Block
    languagebash
    themeRDark
    cd /etc/sysconfig/network-scripts
  3. agf
  4. srdhg

  5. fzg

    duplicate the eth0 (first network interface) network interface configuration file for the new network interface file (eth1)

    Code Block
    languagebash
    themeRDark
     cp ifcfg-eth0 ifcfg-eth1 


  6. Edit the new file (ifcdf-eth1) and alter the following attributes based on the new network interface properties

    Code Block
    languagebash
    themeRDark
    DEVICE=eth1
    BOOTPROTO=static
    ONBOOT=yes
    NM_CONTROLLED=no
    HWADDR=00:0c:29:14:7a:88
    IPADDR=192.168.116.178
    NETMASK=255.255.255.0
    USERCTL=no
    DNS1=8.8.8.8
    DNS2=8.8.4.4
    IFCONFIG_OPTS="txqueuelen 10000"


    DEVICE     : The network interface device name should be eth1
    HWADDR  : The network interface MAC address as displayed at section 1.
    NETMASK : The network mask based on the new interface properties (the network administrator should supply this information)

  7. Restart the network service by entering the following command

    Code Block
    languagebash
    themeRDark
    service network restart
    The command output should be : Restarting network (via systemctl):                        [  OK  ]


  8. df
  9. sdf