Help setting IMSAI 8080 IP address to static #153
Replies: 5 comments 3 replies
-
A machine on a Wifi cannot just set it's wanted IP address static, if two ore more would try the same, this would result in chaos. So there is a management instance, that makes sure that each machine gets a unique IP, this is a little DNS in your Wifi router. Usually this has a configuration dialog, where you assign an IP to the hardware address of a machine. With doing this the DNS will then always assign this IP address, so that it is quasi static. |
Beta Was this translation helpful? Give feedback.
-
The ESP32 WiFi MAC address is hard-coded in hardware by the manufacturer and won't change from allone. |
Beta Was this translation helpful? Give feedback.
-
i fixed my IMSAI8080 IP via router (Speedport3): So: what Udo Munk said 👍 |
Beta Was this translation helpful? Give feedback.
-
Excellent. |
Beta Was this translation helpful? Give feedback.
-
My firewall router DHCP service does not allow fixed MAC->IP DHCP assignments, and my WiFi does support configuring some WiFi clients with static IPs configured on those devices, so long as I pick IPs outside the DHCP range to avoid conflicts. I have other wireless devices where I am using configuration options within those devices to disable "DHCP" and set their static wireless IPs. The original question of whether and how it is possible to assign a static IP address via boot.conf remains unanswered. Is there a list of boot.conf options, beyond those in the provided sample file? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I'm trying to set a static IP on my IMSAI 8080 replica. I am able to connect to it on my wifi with automatic IP selection, but I haven't been able to find anything so far to get it to set a static IP.
I tried various ways in the boot.conf file such as adding:
set_ipv4_address=192.168.2.114
set_ipv4_gateway=192.168.2.1
set_ipv4_netmask=255.255.255.0
or
sta_if.active=True
sta_if.ifconfig='192.168.2.114', '255.255.255.0', '192.168.2.1', '8.8.8.8'
or
BOOTPROTO=static
DNS1=8.8.8.8
DNS2=4.4.4.4
GATEWAY=192.168.2.1
IPADDR=192.68.2.114/24
Any help is appreciated! Thanks,
Jason
Beta Was this translation helpful? Give feedback.
All reactions