Sodan
Expert Member
Heya smart people
So I'm on Vuma Reach with Cool Ideas, and every time the public IP is changed, my macbook loses internet connectivity. Wifi connectivity remains, but internet connectivity is gone. Disconnecting and reconnecting from the wifi doesn't help. Doing an ifconfig dns flush or ip renew doesn't help.
So far I have only found a full reboot restores internet connectivity. This started to really annoy me (enough for me to actually take the effort to slap together a shell script to record the public ip every minute to confirm that internet connectivity is lost whenever the public ip changes).
Laptop was closed for 20 minutes (from 12:55) and when I opened it (13:15), no internet. I rebooted it and, lo and behold, we can see the public IP address has changed (13:20).
Here is the content of the script I wrote to record the public ip:
I really don't want to have to reboot my macbook every single time the public ip is changed. Does anyone know what I can do about this?
So I'm on Vuma Reach with Cool Ideas, and every time the public IP is changed, my macbook loses internet connectivity. Wifi connectivity remains, but internet connectivity is gone. Disconnecting and reconnecting from the wifi doesn't help. Doing an ifconfig dns flush or ip renew doesn't help.
So far I have only found a full reboot restores internet connectivity. This started to really annoy me (enough for me to actually take the effort to slap together a shell script to record the public ip every minute to confirm that internet connectivity is lost whenever the public ip changes).
Laptop was closed for 20 minutes (from 12:55) and when I opened it (13:15), no internet. I rebooted it and, lo and behold, we can see the public IP address has changed (13:20).
Here is the content of the script I wrote to record the public ip:
Bash:
while true; do curl -s https://ipinfo.io/ip | ts >> ip.log; sleep 60; done
I really don't want to have to reboot my macbook every single time the public ip is changed. Does anyone know what I can do about this?