HELP! Seemingly bizarre dhclient behavior on WAN
-
Usually it's indicative of an upstream issue. Mine only does that when the upstream sync is lost.
-
Wish there was a way to blanket reject any lease coming from an rfc1918 address but I checked the source code for dhclient and it looks like it only accepts individual IPs right now.
-
Wish there was a way to blanket reject any lease coming from an rfc1918 address but I checked the source code for dhclient and it looks like it only accepts individual IPs right now.
Will it take multiple IPs? So if for some strange reason there are 3 DHCP servers reachable but only 1 is real, can I put in a comma-separated list?
-
Will it take multiple IPs?
I am not sure- try it and then take a look at your /var/etc/dhclient_XXX.conf (for whichever wan) file to see if the config was written correctly.
-
I do not know if your cable modem can be put into bridge mode but it is worth finding out. You may lose wireless but ideally you want everything behind pfsense anyway. If the modem is creating a problem just bridge right through it. Speed could see increase also.
-
@webtyro:
I do not know if your cable modem can be put into bridge mode but it is worth finding out. You may lose wireless but ideally you want everything behind pfsense anyway. If the modem is creating a problem just bridge right through it. Speed could see increase also.
I assume that that would be something the cable company would have to do, right? I don't have wireless on my CM, I have an access point on my LAN.
-
@webtyro:
I do not know if your cable modem can be put into bridge mode but it is worth finding out. You may lose wireless but ideally you want everything behind pfsense anyway. If the modem is creating a problem just bridge right through it. Speed could see increase also.
Oh, apparently not… http://fascinated.fm/post/2379188731/getting-a-motorola-sbg6580-into-bridge-mode-on
Getting a Motorola SBG6580 into “Bridge” mode on TimeWarner Wideband
-
Unplug coax cable from Motorola
-
Hold down the white reset button on the back panel with a pen for 30s. This resets all settings to factory defaults. The modem will be auto-reconfigured once you plug in the coax cable.
-
When modem is back on plug in a computer with an Ethernet cable into the modem.
-
Connect to http://192.168.0.1 and login with “admin” / “motorola”
-
Now you will make some changes:
-
Wireless -> Primary Network -> Disabled
-
Basic -> Setup -> NAPT Mode -> Disabled
-
Basic -> DHCP -> No
-
Advanced -> Options -> Rg Passthrough -> Enable
-
Advanced -> Options -> Passthrough Mac Addresses -> Add WAN MAC address of your router 6. Connect port 1 on the Motorola modem to the WAN port of your router.
-
-
Doesn't matter. Even in bridge mode it hands that out when it loses upstream sync
-
Doesn't matter. Even in bridge mode it hands that out when it loses upstream sync
His log shows the DHCP attempt from the modem with the private address seems to me is possible causing the sync issue. Does it to you. I know my setup here using a bridged Actiontec is rock solid.
I have to shut everything down overnight just to receive a new gateway. Sync may not be an issue with the modem out of DHCP service. What do you think. Worth a shot? -
That's just how these Moto Surfboard/Arris modems work. They bridge when they have sync and when they don't have sync they hand out a private address. Presumably so you can hit the modem and troubleshoot.
-
That's just how these Moto Surfboard/Arris modems work. They bridge when they have sync and when they don't have sync they hand out a private address. Presumably so you can hit the modem and troubleshoot.
Bridge mode with a mind of its own. Pffft. Figures! Reset button be damned.
-
That's just how these Moto Surfboard/Arris modems work. They bridge when they have sync and when they don't have sync they hand out a private address. Presumably so you can hit the modem and troubleshoot.
From my limited research into this, there does seem to be a way to force the modem to stay in bridge mode all the time, whether it has sync or not… But I haven't tried to set it up yet.
http://fascinated.fm/post/2379188731/getting-a-motorola-sbg6580-into-bridge-mode-on
-
Nowadays cable providers tend to force the modem configuration on the device. It's most likely that all your local config modifications disappear at some point, at least after a reboot.
Back in the days you could simply upload a different config file and the device would do 100 MBit insted of the 10 you payed for. The providers did not like this as much as the customers did, so… :)
Just be glad that you still have a modem with bridge mode. Most of the providers here in Germany disable bridge mode completely. -
@athurdent
Where I am the ISP has a newer modem with bridge mode available but the older one I have they tried to hide the setting with CSS trickery. Reboots are no problem but if the ISP was still updating the firmware then you would lose your setting. Mine is just old enough they have not bothered with any firmware upgrades. Been solid for couple of years now. For this model I just use Firefox in Developer mode and change the CSS setting that hides the bridge mode checkbox, then quickly save my change.
This is tricky because the browser refresh will put you back to square one so getting the CSS changed and saving my setting is under a time limit. Took a few attempts.
If you are lucky maybe they are just hiding it from you.Â
Some models have pages with no link to hide it.;) -
Hello all,
sory for bumping topic, but i really need to know is there possible to add multiple IPs to make the DHCP client reject leases from an undesirable DHCP server. Seems my isp has 5 or 6 different IPs now. Ihave nasty issues with Dynamic dns not been able to resolve public IP etc. Various problems ppls connecting to my gaming sessions. Slow response of PfSense GUI due checking hostname ip and such. Just please tell me how to add Ips.
Many thnx in advance.
-
No, the client can only ignore one address.
-
I admit my C skills are questionable, but I was looking at the source code of dhclient and it appears that a comma-delimited list of multiple ignore IPs would actually be valid here.
see: L945 of dhclient/clparse.c
If you guys agree that would be acceptable, I can make a patch & submit a pull request.
-
Give it a try and see if it works. The man page only claims a single address:
  reject ip-address;       The reject statement causes the DHCP client to reject offers from       servers who use the specified address as a server identifier.       This can be used to avoid being configured by rogue or       misconfigured DHCP servers, although it should be a last resort -       better to track down the bad DHCP server and fix it.
-
I just tested it on my end. I patched interfaces.inc and interfaces.php (quick easy patch – no input validation, yet) and then saved a config with my "real" ignore IP in the middle, surrounded by 2 bogus IPs like so:
<dhcprejectfrom>1.2.3.4,192.168.100.1,5.6.7.8</dhcprejectfrom>
I then rebooted my modem & tail'ed the output to see if the reject was working …
DHCPDISCOVER on igb2 to 255.255.255.255 port 67 interval 32 DHCPNACK from 192.168.100.1 rejected.
So it looks like this does actually work (despite what the FreeBSD docs say)Â ;)
Should I make a real patch? I think IIRC the old GUI code would actually accept a list but somewhere along the way it was decided that this wasn't valid and it was changed… so the code might already be there in the old commits. -
What was allowed before and broke was a subnet (e.g. 192.168.0.0/24), and that definitely doesn't work.
If it works with a comma-separated list then sure, submit a PR (be sure to link to the thread and mention that it was tested)
You can find some validation code in the OpenVPN local/remote networks fields which already validates a list of IP addresses in this way. Though it also allows subnets, which need to be denied here, so it's not an exact copy.