I wasnât aware that screen supports R/W on serial devices as well? The baudrate shouldnât have something to do with support for those color codes (the âOKâ is supposed to be green) but screen seems to not support them. PuTTY does, but this really is a minor visual issue only.
If the baudrate was wrong, you wouldnât be able to see any character, but just garbage on screen.
So far so great: Logging in at this console allows you to setup network without network and monitor.
@Joulinar Yes, UART provided the valuable insight to close the gap on where error was.
@Jappe You were correct to raise First Boot issues, this was likely a problem at numerous attempts, but wasnt recognizable. Maybe in future releases theres a way to disable firstboot setup?
@trendy character problem was caused by loose uart connectors i believe, problem dissappeared
@MichaIng Youâre correct screen doesnt, i stick to putty
@StephanStS can confirm AUTO_SETUP_AUTOMATED = 1 was not the issue, I never changed that field at all, neither was no internet access.
Success after many hours, see my edited post above for solution.
Lastly does anybody know why the ending 24 after address 192.168.0.100/24 is fine in NEO but not PC interfaces file? they are both Debian machines, but will cause ethernet to not connection if used in PC interfaces file.
Also, why does pc need netmask but neo doesnt, without netmask in pc, SSH will report connection refused
Are you also using netmask? I can imagine that both cannot be used together. Itâs either netmask 255.255.255.0 or /24 after the address.
Both need a netmask. Otherwise it is up to the OS implementation how to evaluate an address without netmask. Linux usually interprets is as a /32 host, Windows might use the default mask for this network class or a /24 which is quite common.
Hmm, the netmask setting has actually long been deprecated in Debianâs ifupdown, replaced the CIDR notation in the address setting: interfaces(5) â ifupdown â Debian bookworm â Debian Manpages
It was originally removed already in 2007, then re-added for backwards compatibility, and again officially deprecated (man page wise) in 2019. Which distro and version are you using on the PC?
EDIT: And at least according to the Debian man page, netmask is used as fallback, it the address field does not contain it as CIDR notation suffix. Hence if you define the second, the first would be overridden, as far as I understand. All given that CIDR notation works at all, of course .