mount_nfs 192.168.0.146:/data /mnt *** ssh [#ye92978b] cd $HOME mkdir .ssh cd .ssh cp /mnt/src/authorized_keys ./ cp /mnt/src/id_dsa ./ cd ../ chown -R $LOGNAME .ssh chmod 700 .ssh chmod 600 .ssh/* -key と id の作成方法は [[ssh-keygen>FreeBSD/ssh-keygen]] に。 -rootでssh出来るようにするにはipfで外部をからを塞いで -rootでssh出来るようにするにはipfで外部からを塞いで cd /etc/ssh cp sshd_config sshd_config.orig sed s/'#PermitRootLogin no'/'PermitRootLogin yes'/ < sshd_config.orig > sshd_config diff sshd_config sshd_config.orig *** hosts [#ma3752cb] cp /etc/hosts /etc/hosts.orig cat /mnt/src/hosts.txt >> /etc/hosts -example ==> /etc/hosts <== ::1 localhost localhost.zenno.net 127.0.0.1 localhost localhost.zenno.net 192.168.0.160 kenji.zenno.net kenji 192.168.0.160 kenji.zenno.net. #--- host.txt --- 192.168.0.135 www 192.168.0.136 www2 ... .. . *** resolv.conf [#c62fb64a] cp /etc/resolv.conf /etc/resolv.conf.orig cp /mnt/src/resolv.conf /etc/resolv.conf -example ==> /etc/resolv.conf <== domain zenno.net nameserver 210.196.3.183 nameserver 210.141.112.163 *** hosts.allow [#z27331c5] mv /etc/hosts.allow /etc/hosts.allow.orig echo 'ALL : 127.0.0.1 : allow' >> /etc/hosts.allow echo 'ALL : 192.168. : allow' >> /etc/hosts.allow echo 'ALL : 125.53.25.128/255.255.255.192 : allow' >> /etc/hosts.allow echo 'ALL : ALL : deny' >> /etc/hosts.allow *** inetd [#zb4cf735] cp /etc/rc.conf /etc/rc.conf.orig echo 'inetd_enable="YES"' >> /etc/rc.conf patch -p0 < /mnt/src/inetd.patch # patch -p0 < /mnt/src/rsh.patch # cp /mnt/src/rhosts.txt /root/.rhosts *** loader [#x77384e0] echo 'autoboot_delay="2"' >> /boot/loader.conf *** ntp [#i7411d02] echo 'ntpd_enable="YES"' >> /etc/rc.conf echo 'ntpd_sync_on_start="YES"' >> /etc/rc.conf # echo 'server ntp.jst.mfeed.ad.jp' > /etc/ntp.conf ntpq -p *** ifconfig [#n1b42bb3] patch -p0 < /mnt/src/ifconfig.patch /etc/netstart -- ==> ifconfig.patch <== --- /etc/rc.conf.orig 2010-09-03 10:32:09.000000000 +0900 +++ /etc/rc.conf 2010-09-03 10:35:11.000000000 +0900 @@ -4,9 +4,12 @@ # Enable network daemons for user convenience. # Please make all changes to this file, not to /etc/defaults/rc.conf. # This file now contains just the overrides from /etc/defaults/rc.conf. -defaultrouter="192.168.0.140" +defaultrouter="125.53.25.130" hostname="kenji.zenno.net" ifconfig_re0="inet 192.168.0.160 netmask 255.255.255.0" +ifconfig_re1="inet 125.53.25.160 netmask 255.255.255.192" +static_routes="vpn" + route_vpn="-net 192.168.2.0/24 192.168.0.140" keymap="jp.106" sshd_enable="YES" inetd_enable="YES" shutdown -r now ---- [[FreeBSD]]