I have surveyed the files in the first layer but I have not identified a way to access the internet.
Code: Select all
# udhcpc
udhcpc: started, v1.27.0.git
Setting IP address 0.0.0.0 on eth0
udhcpc: sending discover
udhcpc: sending discover
udhcpc: sending discover
udhcpc: sending discover
^C
I tried NAT and proxy ARP when starting the sandbox with:
Code: Select all
rw-sandbox-lxc.sh /mnt/sda1/sandbox-00.img
if config returns:
Code: Select all
# ifconfig
eth0 Link encap:Ethernet HWaddr 16:35:76:F1:4B:55
inet addr:192.168.118.140 Bcast:0.0.0.0 Mask:255.255.255.255
inet6 addr: fe80::1435:76ff:fef1:4b55/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:35 errors:0 dropped:0 overruns:0 frame:0
TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:7178 (7.0 KiB) TX bytes:586 (586.0 B)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
ping indicates a good connection:
Code: Select all
# ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8): 56 data bytes
64 bytes from 8.8.8.8: seq=0 ttl=117 time=20.759 ms
64 bytes from 8.8.8.8: seq=1 ttl=117 time=20.274 ms
64 bytes from 8.8.8.8: seq=2 ttl=117 time=20.413 ms
64 bytes from 8.8.8.8: seq=3 ttl=117 time=20.402 ms
64 bytes from 8.8.8.8: seq=4 ttl=117 time=20.532 ms
64 bytes from 8.8.8.8: seq=5 ttl=117 time=20.485 ms
64 bytes from 8.8.8.8: seq=6 ttl=117 time=20.706 ms
64 bytes from 8.8.8.8: seq=7 ttl=117 time=20.351 ms
64 bytes from 8.8.8.8: seq=8 ttl=117 time=20.469 ms
^C
so maybe my problem earlier was that I tried to run udhcpc first... or maybe it was failing with proxy ARP because it failed earlier.
It works now, but wget is letting me down.
Code: Select all
# wget https://github.com/moparisthebest/static-curl/releases/download/v7.86.0/curl-amd64
wget: bad address 'github.com'
It looks like the problem is due to the lack of SSL certifications at /etc/ssl/cert.pem
https://stackoverflow.com/questions/222 ... ertificate
https://serverfault.com/questions/89608 ... rtificates
Perhaps the certs should be included in the first layer.
As a workaround I opened the savefile from the host system and copied curl into the /usr/bin folder within sandbox-00.img. I also marked it as executable. But will curl also suffer without ssl certificates?
I wanted to try 0install, so I tried this.
Code: Select all
curl -O https://get.0install.net/0install.sh && chmod +x 0install.sh
and:
Code: Select all
0curl: (6) Could not resolve host: get.0install.net
I reopened the img file and copied /etc/wgetrc from the host into the sandbox save file.
I copied /etc/pki/tls/certs/ca-bundle.crt and the symbolic link at /etc/ssl/ca-bundle.crt
I also copied the /etc/ssl/certs folder into the sandbox.
Curl looks for the environment variable CURL_CA_BUNDLE so after I start the sandbox I need to run:
Code: Select all
export CURL_CA_BUNDLE=/etc/ssl/ca-bundle.crt
https://linuxcommand.org/lc3_man_pages/curl1.html
I think there should be a script which sets this variable automatically. I tried to find it on the host system with:
but I didn't find what I was looking for. Does anyone know where I should do that?
Did it work? No.
I was still unable to download curl from github with wget and curl could not resolve the 0install host.
What should I do now?