|
1 /etc/host.deny
2 ssh-keygen
1 rc.local mac address
我上网需要修改mac地址,在加载网卡的module之后,可以修改/etc/rc.local文件,添加下面几句
ifconfig eth0 down
ifconfig eth0 hw ether xxxxxxxx
ifconfig eth0 up
即可修改mac地址。
2 ssh-keygen
装了openssh之后还不能立刻启动sshd,需要生成key才行。
ssh-keygen -t rsa /etc/ssh/ssh_host_rsa_key
ssh-keygen -t dsa /etc/ssh/ssh_host_dsa_key
然后修改/etc/ssh/sshd_config,添加
Protocol 2
然后执行/usr/sbin/sshd命令即可启动sshd,我还不知道如何把他加入自启动。不知道修改rc.conf行不行。
3 hosts.deny
默认情况下,hosts.deny会拒绝其他电脑连接,所以修改下这个文件,注释掉里面那行就行了。 |
|