IGOS Nusantara dan Ethernet: Perbedaan revisi

Dari IGNwiki
Langsung ke: navigasi, cari
 
(2 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>
# This file was automatically generated by the /lib/udev/write_net_rules
+
  DNS1=<DNS2>
# program run by the persistent-net-generator.rules rules file.
+
  DNS2=<DNS1>
#
+
# 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
 
  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
+

Revisi terkini pada 10 Desember 2012 09.43

KOnfigurasi ada di eth0

DEVICE="eth0"
BOOTPROTO="static"
IPADDR=<YOUR IP>
NETMASK=<NETMASK>
GATEWAY=<GATEWAY>
DNS1=<DNS2>
DNS2=<DNS1>
ONBOOT=yes
NM_CONTROLLED="yes"
HWADDR=<MAC ADDR>
TYPE=Ethernet
DEFROUTE=yes
PEERDNS=yes
PEERROUTES=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="System eth0"
UUID=<UUID>