Solved Ports for arm64 12.1-RELEASE, not found

I just install FreeBSD for arm on one of my RPi3 I cannot find any ports. and portsnap reports
Code:
Looking up portsnap.FreeBSD.org mirrors... none found.
Fetching public key from portsnap.FreeBSD.org... failed.
No mirrors remaining, giving up.
 
Last edited by a moderator:
/etc/freebsd-update.conf
Code:
$FreeBSD: releng/12.1/usr.sbin/freebsd-update/freebsd-update.conf 337338 2018-
08-04 22:25:41Z brd $

# Trusted keyprint.  Changing this is a Bad Idea unless you've received
# a PGP-signed email from <[email]security-officer@FreeBSD.org[/email]> telling you to
# change it and explaining why.
KeyPrint 800651ef4b4c71c27e60786d7b487188970f4b4169cc055784e21eb71d410cc5

# Server or server pool from which to fetch updates.  You can change
# this to point at a specific server if you want, but in most cases
# using a "nearby" server won't provide a measurable improvement in
# performance.
ServerName update.FreeBSD.org

# Components of the base system which should be kept updated.
Components src world kernel

# Example for updating the userland and the kernel source code only:
# Components src/base src/sys world

# Paths which start with anything matching an entry in an IgnorePaths
# statement will be ignored.
IgnorePaths

# Paths which start with anything matching an entry in an IDSIgnorePaths
# statement will be ignored by "freebsd-update IDS".
IDSIgnorePaths /usr/share/man/cat
IDSIgnorePaths /usr/share/man/whatis
IDSIgnorePaths /var/db/locate.database
IDSIgnorePaths /var/log

# Paths which start with anything matching an entry in an UpdateIfUnmodified
# statement will only be updated if the contents of the file have not been
# modified by the user (unless changes are merged; see below).
UpdateIfUnmodified /etc/ /var/ /root/ /.cshrc /.profile

# When upgrading to a new FreeBSD release, files which match MergeChanges
# will have any local changes merged into the version from the new release.
MergeChanges /etc/ /boot/device.hints
 
Last edited by a moderator:
solved. the inet was set to DEFAULT instead of the device name in rc.conf

should be
Code:
ifconfig_le0="inet 10.0.0.226 netmask 255.255.255.0"
 
Last edited by a moderator:
Back
Top