How do I configure my x86_64 HW to connect to the internet? Default IP, 192.168.1.1 doesn't come up when I ping from any port on the HW. Do I need to manually configure ethernet/optical ports? Either ports are functional, I have or tried an optical/ethernet SFP+ adapter too.
I've successfully booted up on NVME SSD image file, Combined-EFI (EXT4), on this mini PC, CWWK Intel Alder Lake N100. Has 16G RAM, 256Gb NVME SSD.
I'm switching to x86 to support higher speeds from my ISP.
i had the same topic on my cwwk n100 with 6 intel lans.
i connected a monitor/keyboard to it, added all ports to the bridge except the wan and configured the rest via luci when i was able to connect via lan.
I’ve never dealt with SFP modules but my understanding is they show up as ethX interfaces.
My assumption is that dhcp works on a brand new install, so maybe the lan is up but bound to an SFP slot.
Find a list of how many eth interfaces you have cat /proc/net/dev | grep eth
For each one listed, add it to the lan bridge uci add_list network.@device[0].ports=ethX
Where X is the eth identifier found in the list.
Repeat this for everything except eth0 (already on lan) and eth1 (as that is already set for WAN and we will leave it alone for now).
uci commit /etc/init.d/network restart
This should add all (except for 1) port to your LAN. Try pinging on different ports now and see if you can get in.
You are looking for the status to be both UP and LOWER_UP. UP means that the port is enabled. LOWER_UP on an eth port means that a live cable is plugged in, i.e. the signal carrier is on. You can identify which port on the box has which kernel name by plugging a cable into them one at a time and checking the status again. These names may not match the manufacturer's label on the box but it will be consistent through reboots.
(Off topic btw, but the enclosure printed HW is labelled respectively in this order eth0, eth1, eth2, eth3). Software (Openwrt) labels them eth2, eth3, eth4, eth5 respectively). So this tells me that eth0 is HW label "SFP+1" and eth1 is "SFP+2". WTSFOPTC SFP+ module should support 1.25Gbps up to 10Gbps. I have a 1Gbps network adapter.
When I connect my 1Gbps cable from the PC to the SFP+ module it doesn't light up. Looks like need a compatible SFP+ adapter although several on Amazon has successfully used 1Gbps connection.
OK, later on, I realized I have a network switch that supports 1G, 2.5G, 5G 10G and that supports these SFP+ transceivers. Connected a ethernet between the two transceivers I mentioned and WAN (aka labelled SFP+2) connected to the internet now.