dch
Developer
I have been trying out Scaleway's arm64 VMs with FreeBSD 14.2-RELEASE. As they don't offer official images, it's necessary to upload the qcow2 release image to their object store, convert it to a snapshot, turn the snapshot into an image from the command line, and finally boot the image.
Once that's done, FreeBSD comes up nicely, and a typical vtnet0 interface appears:
IPv6 worked OOTB, with
This approach doesn't work, in rc.conf.
Doing this manually:
Any suggestions?
Once that's done, FreeBSD comes up nicely, and a typical vtnet0 interface appears:
Code:
vtnet0: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
options=4c07bb<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,JUMBO_MTU,VLAN_HWCSUM,TSO4,TSO6,LRO,VLAN_HWTSO,LINKSTATE,TXCSUM_IPV6>
ether de:00:00:8a:39:1d
inet6 fe80::dc00:ff:fe8a:391d%vtnet0 prefixlen 64 scopeid 0x1
inet6 2001:bc8:710:96ee:dc00:ff:fe8a:391d prefixlen 64 autoconf pltime 14400 vltime 86400
media: Ethernet autoselect (10Gbase-T <full-duplex>)
status: active
nd6 options=23<PERFORMNUD,ACCEPT_RTADV,AUTO_LINKLOCAL>
IPv6 worked OOTB, with
ifconfig_vtnet0_ipv6="inet6 accept_rtadv"
but DHCP did not. These are the settings Scaleway provides:- IP: 163.172.143.183/32
- gateway 62.210.0.1
This approach doesn't work, in rc.conf.
Code:
ifconfig_vtnet0="inet 163.172.143.183/32"
defaultrouter="62.210.0.1"
Doing this manually:
Code:
root@a04:~ # ifconfig vtnet0 inet 163.172.143.183/32 add
root@a04:~ # netstat -4rn
Routing tables
Internet:
Destination Gateway Flags Netif Expire
127.0.0.1 link#2 UH lo0
163.172.143.183 link#2 UH lo0
root@a04:~ # route add default 62.210.0.1
add net default: gateway 62.210.0.1 fib 0: Invalid argument
root@a04:~ #
Any suggestions?