|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
freebsd jail rc.conf
anyone know what lines to put in the rc.conf or have a rc script that will start my jail automaticly when the system is rebooted ?
Thanks Justin |
|
#2
|
|||
|
|||
|
I don't think jails are included in the default freebsd boot scripts. But you can put something like this in /usr/local/etc/rc.d/jail.sh:
Code:
#!/bin/sh
case "$1" in
start)
ifconfig rl0 inet alias 192.168.2.1/32
jail -u jailuser /jail jail1.localnet 192.168.2.1 /bin/sh /etc/rc
;;
stop)
ssh 192.168.2.1 "/bin/kill -TERM -1"
ifconfig rl0 inet -alias 192.168.2.1/32
;;
*)
echo "Usage: $0 [start|stop]"
;;
esac
This code assumes that you have setup sshd inside the jail and have copied your public ssh key to /root/.ssh/authorized_keys inside the jail. Otherwise you will be prompted for the root password when you stop it. HTH, M.
__________________
-- Manuel Hirsch - Linux, FreeBSD, programming, administration articles, tutorials and more. |
![]() |
| Viewing: Dev Shed Forums > Operating Systems > BSD Help > freebsd jail rc.conf |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|