Hi Guys,
I have setup a FreeBSD on a beagle bone and am facing networking issues on this setup. All I need is network access on this FreeBSD.
Currently I can ping the gateway but cannot ping ant device that is on the same router. Here is how I have set it up.
I have a router connected to my company network. The router's IP address is 192.168.3.1 I have 2 devices connected to it, 1 beagle bone with freebsd at 192.168.3.5 and one laptop at 192.168.3.3
Now from freebsd, I can ping the router
From the laptop I can ping the beagle bone (FreeBSD)
However, I cannot ping the laptop from the FreeBSD on beaglebone
There is no response from this.
Here is my rc.conf
Any pointers on what I can do to fix this?
I have setup a FreeBSD on a beagle bone and am facing networking issues on this setup. All I need is network access on this FreeBSD.
Currently I can ping the gateway but cannot ping ant device that is on the same router. Here is how I have set it up.
I have a router connected to my company network. The router's IP address is 192.168.3.1 I have 2 devices connected to it, 1 beagle bone with freebsd at 192.168.3.5 and one laptop at 192.168.3.3
Now from freebsd, I can ping the router
Code:
# ping 192.168.3.1
PING 192.168.3.1 (192.168.3.1): 56 data bytes
64 bytes from 192.168.3.1: icmp_seq=0 ttl=255 time=1.318 ms
64 bytes from 192.168.3.1: icmp_seq=1 ttl=255 time=0.647 ms
64 bytes from 192.168.3.1: icmp_seq=2 ttl=255 time=0.615 ms
64 bytes from 192.168.3.1: icmp_seq=3 ttl=255 time=0.658 ms
64 bytes from 192.168.3.1: icmp_seq=4 ttl=255 time=0.655 ms
64 bytes from 192.168.3.1: icmp_seq=5 ttl=255 time=0.604 ms
64 bytes from 192.168.3.1: icmp_seq=6 ttl=255 time=0.665 ms
Code:
PING 192.168.3.5 (192.168.3.5): 56 data bytes
64 bytes from 192.168.3.5: icmp_seq=0 ttl=64 time=0.566 ms
64 bytes from 192.168.3.5: icmp_seq=1 ttl=64 time=0.341 ms
64 bytes from 192.168.3.5: icmp_seq=2 ttl=64 time=0.360 ms
64 bytes from 192.168.3.5: icmp_seq=3 ttl=64 time=0.355 ms
64 bytes from 192.168.3.5: icmp_seq=4 ttl=64 time=0.389 ms
64 bytes from 192.168.3.5: icmp_seq=5 ttl=64 time=0.370 ms
However, I cannot ping the laptop from the FreeBSD on beaglebone
Code:
# ping 192.168.3.3
PING 192.168.3.3 (192.168.3.3): 56 data bytes
There is no response from this.
Here is my rc.conf
Code:
# cat rc.conf
hostname="beaglebone"
#ifconfig_cpsw0=dhcp
ifconfig_cpsw0="inet 192.168.3.5 netmask 255.255.255.0"
defaultrouter="192.168.3.1"
sshd_enable="YES"
#gateway_enable="YES"
# Nice if you have a network, else annoying.
#ntpd_enable="YES"
ntpd_sync_on_start="YES"
# Uncomment to disable common services (more memory)
#cron_enable="NO"
#syslogd_enable="NO"
sendmail_submit_enable="NO"
sendmail_outbound_enable="NO"
sendmail_msp_queue_enable="NO"
Any pointers on what I can do to fix this?