Changes between Version 1 and Version 2 of slackwareInstalls


Ignore:
Timestamp:
2013-06-05T14:08:31-04:00 (12 years ago)
Author:
warb
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • slackwareInstalls

    v1 v2  
    11== Put Notes on Slackware installs here ==
    22=== Networking ===
    3 The preferred way of setting up your network connection is through the use of the netconfig program.
    4 
    5 ==== rc.inet1====
     3The preferred way of setting up your network connection is through the use of the netconfig program. [[br]]
     4You can, of course, edit the network configuration files by hand. They are '''/etc/rc.d/rc.inet1.conf''' and '''/etc/rc.d/rc.inet2'''
     5==== rc.inet1 ====
    66
    77rc.inet1's role is simple: it configures your networking devices and sets up your routing. Essentially, rc.inet1 is the file that gives you a network in the first place, reading config options from its config file: rc.inet1.conf.
     
    99This configuration file is pretty simple, it supports up to 3 different networking devices. For each device there's a section like the following:
    1010
     11{{{
    1112# Config information for eth0:
    1213IPADDR[0]=""
    13 NETMASK[0]=""
    14 USE_DHCP[0]=""
     14NETMASK[0]="255.255.255.0"
     15USE_DHCP[0]="no"
    1516DHCP_HOSTNAME[0]=""
    16 
     17}}}