Hi everyone,
I tried googling this, but came across a lot of different information that doesn't seem to work for me.
I'm interested if there's a way to use uEnv.txt to set up a static/manual IP? ideally i'd like to configure ip, gateway, subnet and hostname. The reason I want to do this in uEnv.txt and not the usual way, is I am trying to configure the Pine64 using a link-local connection to my computer. It's directly linked to it using a single ethernet cable, so there is no DHCP server. If everything is set up manually it should still work this way...
i tried using the following, but it does *not* work (from http://textuploader.com/xodk)
I tried googling this, but came across a lot of different information that doesn't seem to work for me.
I'm interested if there's a way to use uEnv.txt to set up a static/manual IP? ideally i'd like to configure ip, gateway, subnet and hostname. The reason I want to do this in uEnv.txt and not the usual way, is I am trying to configure the Pine64 using a link-local connection to my computer. It's directly linked to it using a single ethernet cable, so there is no DHCP server. If everything is set up manually it should still work this way...
i tried using the following, but it does *not* work (from http://textuploader.com/xodk)
Code:
ipaddr=192.168.0.101
serverip=192.168.0.100
gateway=192.168.0.1
netmask=255.255.255.0
hostname=pine64.local
ip=${ipaddr}:${serverip}:${gateway}:${netmask}:${hostname}:eth0:off