Remote_XDMCP(Redhat6)
Remote_XDMCP(RedHat6.6)
[toc]
# Linux 配置
# /etc/gdm/custom.conf
[daemon]
RemoteGreeter=/usr/libexec/gdm-simple-greeter
[security]
AllowRemoteRoot=true
[xdmcp]
Enable=1
Port=177
DisplaysPerHost=5
[greeter]
Browser=true
[chooser]
[debug]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
另外,如果想开机免登录,可以在[daemon]字段下添加
[daemon]
TimedLoginEnable=True
AutomaticLoginEnable=false
TimedLogin=root
AutomaticLogin=false
TimedLoginDelay=3
1
2
3
4
5
6
2
3
4
5
6
# /etc/init/prefdm.conf
start on stopped rc RUNLEVEL=5
stop on starting rc RUNLEVEL=[!5]
console output
respawn
respawn limit 10 120
#exec /etc/X11/prefdm -nodaemon
exec /usr/sbin/gdm
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
# 关闭防火墙,或开放177端口
service iptables stop(推荐)
or
iptables -A INPUT -p udp -s 0/0 -d 0/0 --dport 177 -j ACCEPT
or
在/etc/sysconfig/iptables文件中加入: -A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 177 -j ACCEPT
之后重启防火墙
$service iptables restart
# 确认xdmcp启动
#lsof -i:177 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME gdm-binar 1839 root 11u IPv4 11907 0t0 UDP *:xdmcp
出现上面的文字,说明已经启动。(注意要用root用户执行,否则可能命令不报错,但是没有输出。)
通过xmanager连接linux远程主机桌面 (opens new window)
# Windos 配置
Windows闭防火墙入站规则之开放端口 (opens new window)
# XDMCP 界面配置
单击键盘出现两个字符的问题解决办法 (opens new window)
点击Xmanager6
上面的工具
菜单,并点击 Xconfig 开始(C)
,右键
点击Default Profile
,选择属性
。
在打开的界面里面选择高级
,XKEYBOARD
字段默认是打上对勾的,取消选择
,重新远程登录即可。
上次更新: 2023/10/10, 14:48:21