-- xrdp 설치

# yum install epel-release

# yum install xrdp tigervnc-server

# service xrdp start
Redirecting to /bin/systemctl restart  xrdp.service

 

-- 포트변경(VMare에서 port forwarding 할거라면 설정필요없다.)

# netstat -anop | grep 3389
tcp        0      0 0.0.0.0:3389            0.0.0.0:*               LISTEN      68046/xrdp           off (0.00/0/0)

vi /etc/xrdp/xrdp.ini

port=3389 -> port=8389

:wq!

# service xrdp restart
Redirecting to /bin/systemctl restart  xrdp.service

# netstat -anop | grep 8389
tcp        0      0 0.0.0.0:8389            0.0.0.0:*               LISTEN      69136/xrdp           off (0.00/0/0)

 

-- VMWare 포트포워딩 추가
C:\ProgramData\VMware\vmnetnat.conf 

8389 = 192.168.85.128:3389

-- 네트워크 아답터 사용안함 -> 사용

-- VMWare NAT Service 재시작

-- 리눅스의 방화벽 설정은 안해도 됐다.

-- 접속은 원격데스크탑 연결로 하면 된다.


-- 서비스 제거

# systemctl disable xrdp
Removed symlink /etc/systemd/system/multi-user.target.wants/xrdp.service.


-- 서비스 추가

# systemctl enable xrdp
Created symlink from /etc/systemd/system/multi-user.target.wants/xrdp.service to /usr/lib/systemd/system/xrdp.service.