------- ifconfig ------
eth0 Link encap:Ethernet HWaddr 00:04:5A:82:63

2
inet addr:192.168.1.1 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4238 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:920 dropped:0 overruns:0 carrier:1840
collisions:0 txqueuelen:100
RX bytes:537541 (524.9 Kb) TX bytes:0 (0.0 b)
Interrupt:9 Base address:0xa400
-------- rc.inetd1 ---------
# Edit these values to set up your first Ethernet card (eth0):
IPADDR="192.168.1.1" # REPLACE with YOUR IP address!
NETMASK="255.255.255.0" # REPLACE with YOUR netmask!
# Or, uncomment the following lines to set up eth0 using DHCP:
#USE_DHCP=yes
# If your provider requires a DHCP hostname, uncomment and edit below:
#DHCP_HOSTNAME="CCHOSTNUM-A"
# Edit these values to set up your second Ethernet card (eth1),
# if you have one. Otherwise leave it configured to 127.0.0.1,
# or comment it out, and it will be ignored at boot.
IPADDR2="127.0.0.1" # REPLACE with YOUR IP address!
NETMASK2="255.255.255.0" # REPLACE with YOUR netmask!
# Or, uncomment the following lines to set up eth1 using DHCP:
USE_DHCP2=yes
--------- dhcpd.conf --------
ddns-update-style interim;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.2 192.168.1.6;
default-lease-time 86400;
max-lease-time 86400;
option routers 192.168.1.1;
option ip-forwarding off;
option broadcast-address 192.168.1.255;
option subnet-mask 255.255.255.0;
option domain-name-servers *.*.22.67;
option domain-name "none.org";
option netbios-name-servers 192.168.1.1;
option netbios-dd-server 192.168.1.1;
option netbios-node-type 8;
option netbios-scope "";
}
-----------lsmod -------------------
Module Size Used by Not tainted
ipt_MASQUERADE 1176 1 (autoclean)
ipt_LOG 3128 1 (autoclean)
ipt_state 568 1 (autoclean)
iptable_filter 1672 1 (autoclean)
ip_nat_ftp 2896 0 (unused)
iptable_nat 12536 2 [ipt_MASQUERADE ip_nat_ftp]
ip_conntrack_irc 2464 0 (unused)
ip_conntrack_ftp 3168 0 (unused)
ip_conntrack 12568 4 [ipt_MASQUERADE ipt_state ip_nat_ftp iptable_nat ip_conntrack_irc ip_conntrack_ftp]
ip_tables 10360 7 [ipt_MASQUERADE ipt_LOG ipt_state iptable_filter iptable_nat]
-----------------------------------------------
I'm trying to setup internet sharing with slackware 8.1, but none of the computers on the LAN can ping anything outside the LAN, they can ping both NIC cards, and eachother but nothing else.....can anyone see where I went wrong