Hello
Freebsd FreeBSD newbie, I installed a gateway/router between two networks:
LAN: 192.168.1.0/24
WAN: 62.161.172.32/28
freebsd FreeBSD gateway IPs are:
LAN: 192.168.1.21
WAN: 62.161.172.39
ISP gateway so as to go to the net is: 62.161.172.46
Everything is fine on thefreebsd FreeBSD gateway, ping to both networks works fine. But from the LAN it is impossible to go to the Internet. A ping to the ISP router doesn't reply and it is impossible to surf from a LAN station. I also deactivated all the firewalls without success.
Does it miss a route?
/etc/rc.conf:
netstat -nr:
Thanks in advance,
yves
LAN: 192.168.1.0/24
WAN: 62.161.172.32/28
LAN: 192.168.1.21
WAN: 62.161.172.39
ISP gateway so as to go to the net is: 62.161.172.46
Everything is fine on the
Does it miss a route?
/etc/rc.conf:
Code:
defaultrouter="62.161.172.46"
gateway_enable="YES"
hostname="cdm.mife.belfort"
ifconfig_bge0="inet 192.168.1.21 netmask 255.255.255.0"
ifconfig_vr0="inet 62.161.172.39 netmask 255.255.255.240"
keymap="fr.iso.acc"
pf_enable="YES"
pf_rules="/etc/pf.conf"
pf_flags=""
pflog_enable="YES"
pflog_logfile="/var/log/pflog"
pflog_flags=""
netstat -nr:
Code:
Internet:
Destination Gateway Flags Refs Use Netif Expire
default 62.161.172.46 UGS 0 342 vr0
62.161.172.32/28 link#6 U 0 10 vr0
62.161.172.39 link#6 UHS 0 0 lo0
127.0.0.1 link#8 UH 0 0 lo0
192.168.1.0/24 link#5 U 0 14 bge0
192.168.1.21 link#5 UHS 0 0 lo0
yves