Hello!
I'm new in FreeBSD, and I have a problem with the ping command. Part of which commands I have in my /etc/rc.conf, where I’m initializing my network cards:
And in /etc/start_if.re0:
After this everything is fine, but then I’m making a ping to my re0 or em0 network cards. I’m getting the same strange IP in response, which is not mine. E.g., ping to my re0 network card should return 192.168.1.1 and ping to my re0 card should return my global IP (as I think
). I don’t know from where my problem is coming. Please, help.
I'm new in FreeBSD, and I have a problem with the ping command. Part of which commands I have in my /etc/rc.conf, where I’m initializing my network cards:
Code:
ifconfig_re0="DHCP"
ifconfig_em0="inet 192.168.1.1 netmask 255.255.255.0"
And in /etc/start_if.re0:
Code:
#!/bin/sh
ifconfig re0 ether XX:XX:XX:XX:XX:XX
After this everything is fine, but then I’m making a ping to my re0 or em0 network cards. I’m getting the same strange IP in response, which is not mine. E.g., ping to my re0 network card should return 192.168.1.1 and ping to my re0 card should return my global IP (as I think
