Schemat mojej sieci jest w tym momencie prosty i z racji na brak działającej konfiguracji oczywisty:
Internet <---> ruter <---> Denian (serwer) <---> użytkownicy - taki jest zamysł, ostatecznie żeby pozbyć się i rutera.
<---> użytkownicy - chwilowa rzeczywistość
Problem polega na tym że jako "użytkownik" po podłączeniu się do serwera przez wifi, otrzymaniu adresu IP, nie mam połączenia z internetem. Wszystko działa w mojej podsieci ustawionej za wifi, niestety nie mogę nawet wysłać sygnału ping do rutera albo interfejsu wan na serwerze.
Moja obecna konfiguracja:
Kod: Zaznacz cały
cat /etc/network/interfaces
auto lo eth0 wlan0
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet dhcp
gateway 192.168.1.0
iface wlan0 inet static
gateway 192.168.5.1
address 192.168.5.1
netmask 255.255.255.0
broadcast 192.168.5.255
network 192.168.5.0
Kod: Zaznacz cały
cat /etc/dhcp/dhcpd.conf
option routers 192.168.0.1;
authoritative;
ddns-update-style interim;
subnet 192.168.5.0
netmask 255.255.255.0
{
option routers 192.168.0.1;
ddns-updates off;
range 192.168.5.10 192.168.5.25;
default-lease-time 259200;
max-lease-time 518400;
}
Kod: Zaznacz cały
iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
Chain FORWARD (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
Kod: Zaznacz cały
route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 eth0
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
I niech mi ktoś powie o co chodzi, ja nie jestem sieciowcem, szukam rozwiązania do swojego domu.