|
|
| (Satu revisi antara oleh pengguna yang sama tidak ditampilkan) |
| Baris 1: |
Baris 1: |
| − | Konfigurasi ada di:
| + | KOnfigurasi ada di eth0 |
| | | | |
| − | == Ethernet melalui udev ==
| + | DEVICE="eth0" |
| − | /etc/udev/rules.d/70-persistent-net.rules
| + | BOOTPROTO="static" |
| − | | + | IPADDR=<YOUR IP> |
| − | # Berkas: /etc/udev/rules.d/70-persistent-net.rules | + | NETMASK=<NETMASK> |
| − |
| + | GATEWAY=<GATEWAY> |
| − | # Empat baris berikut hasil dari anaconda saat masih di server1
| + | DNS1=<DNS2> |
| − | # Networking Interface (rule written by anaconda)
| + | DNS2=<DNS1> |
| − | #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 melakukan Perubahan1 dan Perubahan2
| + | |
| − | # ----------------------------------------------------------------------
| + | |
| − | # 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 | | ONBOOT=yes |
| − | IPADDR=192.168.228.4 | + | NM_CONTROLLED="yes" |
| − | BOOTPROTO=none | + | HWADDR=<MAC ADDR> |
| − | NETMASK=255.255.255.0
| + | |
| | TYPE=Ethernet | | TYPE=Ethernet |
| − | GATEWAY=192.168.228.1 | + | DEFROUTE=yes |
| − | DNS1=192.168.228.1 | + | PEERDNS=yes |
| | + | PEERROUTES=yes |
| | + | IPV4_FAILURE_FATAL=yes |
| | IPV6INIT=no | | IPV6INIT=no |
| − | USERCTL=no
| |
| − | PREFIX=24
| |
| | NAME="System eth0" | | NAME="System eth0" |
| − | UUID=5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03 | + | UUID=<UUID> |
| − | | + | |
| − | === 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:
| + | |
| − | * Linux Home Server Howto http://www.brennan.id.au/index.html
| + | |
| − | * http://www.brennan.id.au/04-Network_Configuration.html
| + | |
| − | * Linux Network Configuration http://www.yolinux.com/TUTORIALS/LinuxTutorialNetworking.html
| + | |