迷彩 潜伏 隐蔽 伪装
发布时间:2013-01-07 22:13:08
uplinkfast 只有当接入层交换机具有上行的冗余链路时,启用uplinkfast 才有意义 A. 在交换机上必须启动了UplinkFast功能; B. 至少有一个处于Blocking的端口(即有冗余链路); C. 链路失效必须发生在Root Port上。 交换机启动了UplinkFast后,由于提高了交换机上所有端口的路径开销,所以不适合作为根桥。 The spanning tree port cost and port-VLAN cost of all ports on the switch is increased by 3000. The spanning tre......【阅读全文】
发布时间:2013-01-07 22:11:46
os:ubuntu or debian # apt-get install xrdp# vino-preferences //设置登陆权限......【阅读全文】
发布时间:2013-01-07 22:10:56
1)At that moment this method is not working because of a small bug in lightdm, it should be fixed soon. Please check the bug status before applying this method.Heres what you want to do:First, make a backup of your config.sudo cp /etc/lightdm/users.conf /etc/lightdm/users.conf.bakThen, you need to e......【阅读全文】
发布时间:2013-01-07 22:10:11
FTP有三种方式:匿名用户、本地用户和虚拟用户。 匿名用户:在登录FTP时使用默认的用户名,一般是ftp或anonymous。 本地用户:使用系统用户登录,用户和密码存放在在/etc/passwd中。 虚拟用户:这是FTP专有用户,与本地用户无关,因此只能访问FTP服务器提供的资源,大大增强了系统的安全;根据用户认证的方式不同,又可以分为两种方式实现:本地数据文件和数据库服务器。 首先,简单地介绍下部署环境: 操作系统: SUSE 11.0 应用软件: vsftpd db_load ......【阅读全文】
发布时间:2013-01-07 22:07:29
1. 创建帐号:useradd username2. 让这个帐号有sudo权限:sudo usermod -a -G sudo username3. 通过配置/etc/sudoers,让这个帐号使用sudo权利时不必输入密码:visudo 这一步可以参考sudoers文件中已有的一行:root ALL=(ALL:ALL) ALL 第一个ALL是指可以在所有ip下使用,括号里的ALL应该是可以以哪些帐号来使用,括号后面的ALL是可以在执行哪些命令时不输入密码。ALL是指所有,也可以根据需要来具体配置,比如像下......【阅读全文】