|
Server : Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 System : Linux server.jackjohnson.com 2.6.32-279.5.2.el6.x86_64 #1 SMP Fri Aug 24 01:07:11 UTC 2012 x86_64 User : jackjohn ( 502) PHP Version : 5.3.17 Disable Function : NONE Directory : /usr/share/system-config-network/netconfpkg/plugins/ |
Upload File : |
Ñò
åOÜLc @ sƒ d Z d d k l Z d d k l Z d d k l Z l Z d a d a
d e f d „ ƒ YZ d „ Z d „ Z
d „ Z d
Z d S( s. Implementation of the generic ethernet device
iÿÿÿÿ( t Device( t getDeviceFactory( t ETHERNETt
getDeviceTypet DevEthernetc B sD e Z d Z e Z d Z d Z d „ Z d „ Z d „ Z
d „ Z RS( s
An object of class DevEthernet can be obtained by calling:
df = getDeviceFactory()
ethernetclass = df.getDeviceClass(ETHERNET)
ethernetdevice = ethernetclass()
It has the following attributes, shown here with the corresponding
initscripts variables:
Device - DEVICE=<name of physical device (except
dynamically-allocated PPP devices where it
is the "logical name")>
IP - IPADDR
Netmask - NETMASK
Gateway - GATEWAY
Hostname - HOSTNAME - Hint for DHCP
BootProto - BOOTPROTO=none|bootp|dhcp
Type - TYPE=ETHERNET
HardwareAddress - HWADDR=<MAC Address>
OnBoot - ONBOOT=yes|no
AllowUser - USERCTL=yes|no
IPv6Init - IPV6INIT=yes|no
AutoDNS - PEERDNS=yes|no - modify /etc/resolv.conf if peer uses
msdns extension (PPP only) or DNS{1, 2} are set, or if
using pump or dhcpcd. default to "yes".i c C s t t | ƒ i ƒ t | _ d S( N( t superR t __init__R t Type( t self( ( sJ /usr/share/system-config-network/netconfpkg/plugins/NCPluginDevEthernet.pyR : s c C s1 t | ƒ } t | d ƒ o | i i d ƒ S| S( s7 get the gtk.Dialog of the ethernet configuration dialogt xmlt Dialog( t _devEthernetDialogt hasattrR t
get_widget( R t dialog( ( sJ /usr/share/system-config-network/netconfpkg/plugins/NCPluginDevEthernet.pyt getDialog>