Feature #768
Using SSH With The FreeBSD Installer / LiveCD
Description
This is a guide on setting up an SSH server with a FreeBSD Installer Disc or USB Image.
- When the FreeBSD Installer Welcome message appears choose the Shell option.
- Then acquire an IP address using DHCP:
dhclient em0
- NOTE: Use
ifconfig
to find your network interface.
- NOTE: Use
- Mount a temporary
/etc
directory:mkdir /tmp/etc mount_unionfs /tmp/etc /etc
- Set a root password:
passwd root
- Allow root to login over SSH:
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
- Now start an SSH daemon by running:
service sshd onestart
Resources¶
Updated by Daniel Curtis almost 9 years ago
- Tracker changed from Support to Feature
- Status changed from New to Resolved
- % Done changed from 0 to 100