1 2Syntax for configuring RDP redirection modules 3============================================== 4 5General 6------- 7 8All redirection is configured using the -r option. The general syntax 9is: 10 11-r <module>:<string> 12 13<module> is the name of the redirection module. The following names 14are valid: disk, printer, lptport, comport, clipboard, sound. 15 16<string> is interpreted by each redirection module. 17 18The redirection modules are described below. 19 20 21disk mapping 22------------- 23Multiple mappings possible: yes 24Default: no disk redirected 25Syntax: -r disk:<sharename>=<path> 26Example: -r disk:home=/home/johndoe 27 28 29printer mapping 30--------------- 31Multiple mappings possible: yes 32Default: no printers redirected 33Syntax: -r printer:<printername> 34Example: -r printer:mydeskjet 35 36 37 38LPT port mapping 39---------------- 40Multiple mappings possible: yes 41Default: no LPT ports redirected 42Syntax: -r lptport:<lptport>=<device> 43Example: -r lptport:LPT1=/dev/lp0 44 45 46COM port mapping 47---------------- 48Multiple mappings possible: yes 49Default: no COM ports redirected 50Syntax: -r comport:<comport>=<device> 51Example: -r comport:COM1=/dev/ttyS0 52 53 54clipboard mapping 55----------------- 56Multiple mappings possible: no 57Default: yes 58Syntax: -r clipboard:[yes|no] 59Example: -r clipboard:no 60 61 62sound mapping 63------------- 64Multiple mappings possible: no 65Default: off 66Syntax: -r sound:[local|off|remote] 67 68"local" means "Bring to this computer" 69"off" means "Do not play" 70"remote" means "Leave at remote computer" 71 72Example: -r sound:remote 73 74 75