IGOS Nusantara dan Ethernet

Dari IGNwiki
Revisi per 14 Mei 2010 04.10 oleh Ns (bicara | kontrib)

Langsung ke: navigasi, cari

Konfigurasi ada di:

Ethernet melalui udev

/etc/udev/rules.d/70-persistent-net.rules

# Berkas: /etc/udev/rules.d/70-persistent-net.rules

# This file was automatically generated by the /lib/udev/write_net_rules
# program run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single line.

# Empat baris berikut hasil dari anaconda saat masih di server1
# Networking Interface (rule written by anaconda)
#SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:1e:58:A1:A2:A3", ATTR{type}=="1", KERNEL=="eth*",   NAME="eth1"
# Networking Interface (rule written by anaconda)
#SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:11:11:B1:B2:B3", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

# Baris berikut hasil udev dan perlu perubahan
# --------------------------------------------
# Perubahan1: eth2 ke eth0
# PCI device 0x8086:0x10cc (e1000e)
#SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:15:17:AA:BB:11", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth2"
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:15:17:AA:BB:11", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

# Perubahan2: eth2 ke eth1
# PCI device 0x8086:0x10d3 (e1000e) (custom name provided by external tool)
#SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:15:17:AA:BB:12", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth2"
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:15:17:AA:BB:12", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
# --------------------------------------------

Konfigurasi ifcfg-ethX

  • /etc/sysconfig/network-scripts/ifcfg-eth0
  • /etc/sysconfig/networking/devices/ifcfg-eth0
  • /etc/sysconfig/networking/profiles/default/ifcfg-eth0

ifcfg-eth0

  • /etc/sysconfig/network-scripts/ifcfg-eth0
# cat /etc/sysconfig/network-scripts/ifcfg-eth0
# Networking Interface
DEVICE=eth0
HWADDR=00:15:17:AA:BB:11
ONBOOT=yes
IPADDR=192.168.228.4
BOOTPROTO=none
NETMASK=255.255.255.0
TYPE=Ethernet
GATEWAY=192.168.228.1
DNS1=192.168.228.1
IPV6INIT=no
USERCTL=no
PREFIX=24
NAME="System eth0"
UUID=5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03

ifcfg-eth1

  • /etc/sysconfig/network-scripts/ifcfg-eth1
# cat /etc/sysconfig/network-scripts/ifcfg-eth1
# Networking Interface
DEVICE=eth1
HWADDR=00:15:17:AA:BB:11
ONBOOT=yes
BOOTPROTO=none
TYPE=Ethernet
IPV6INIT=no
USERCTL=no
IPADDR=192.168.228.8
NETMASK=255.255.255.0
DNS2=8.8.8.8
DNS1=192.168.228.1
#GATEWAY=192.168.228.1

Tautan: