Results 1 to 1 of 1
OK, I am setting up a computer to act as a router and dhcp server in ArchLinux (Cuz I love ArchLinux), I think that I am really close, on the ...
- 01-28-2007 #1Just Joined!
- Join Date
- Jan 2007
- Posts
- 1
Just some router questions
OK, I am setting up a computer to act as a router and dhcp server in ArchLinux (Cuz I love ArchLinux), I think that I am really close, on the client machines when I ping and the like it looks for a long time, but eventually fails, I have nat running in iptables, (I thiink) and dhcp seems to be working, here are my files, anyone know what I still need to do?
/etc/dhcpd.conf:
ddns-update-style none;
# masamune
subnet 17.73.3.0 netmask 255.255.255.0 {
option domain-name-servers 69.144.49.30 , 69.146.17.2 , 69.144.49.29;
option broadcast-address 17.73.3.200;
option subnet-mask 255.255.255.0;
option routers 17.73.3.1;
range 17.73.3.100 17.73.3.199;
}
host Axiom {
hardware ethernet 00:02:B3:2F:BF:15;
fixed-address 17.73.3.120;
}
host Zohar {
hardware ethernet 00:02:B3:32:88:2C;
fixed-address 17.73.3.130;
}
/etc/iptables/iptables.rules
# Generated by iptables-save v1.3.7 on Sat Jan 27 20:57:50 2007
*mangle
:PREROUTING ACCEPT [0:0]
:INPUT ACCEPT [548:173176]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:POSTROUTING ACCEPT [560:85953]
COMMIT
# Completed on Sat Jan 27 20:57:50 2007
# Generated by iptables-save v1.3.7 on Sat Jan 27 20:57:50 2007
*nat
:PREROUTING ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
COMMIT
# Completed on Sat Jan 27 20:57:50 2007
# Generated by iptables-save v1.3.7 on Sat Jan 27 20:57:50 2007
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
COMMIT
# Completed on Sat Jan 27 20:57:50 2007


Reply With Quote