Attach the content of the file /etc/sysconfig/network-scripts/ifcfg-eth0 to your lab report.
What will be an ideal response?
```
DEVICE="eth0"
BOOTPROTO="none"
IPADDR="10.0.1.11"
NETMASK="255.255.255.0"
ONBOOT="yes"
IPXNETNUM_802_2=""
IPXPRIMARY_802_2="no"
IPXACTIVE_802_2="no"
IPXNETNUM_802_3=""
IPXPRIMARY_802_3="no"
IPXACTIVE_802_3="no"
IPXNETNUM_ETHERII=""
IPXPRIMARY_ETHERII="no"
IPXACTIVE_ETHERII="no"
IPXNETNUM_SNAP=""
IPXPRIMARY_SNAP="no"
IPXACTIVE_SNAP="no"
```
DEVICE indicates which NIC device is this. BOOTPROTO is used when this host is using BOOTP
to get the booting file from the network. IPADDR has the ip address value of DEVICE. NETMASK
is masking bits to get the network address from IPADDR by IPADDR XOR NETMASK. ONBOOT
means the network driver should be loaded at boot time or not. IPX series are the settings for the
IPX networks which is not relevant to this lab.
You might also like to view...
A(n) ________ provides a SharePoint developer with a beginning set of tools and a layout for a site or workspace
Fill in the blank(s) with correct word
Why does the following assignment statement generate an error?
>>> x.y = 5
Traceback (most recent call last):
File "