Latest web development tutorials

Linux rlogin command

Linux command Daquan Linux command Daquan

Linux rlogin remote login command.

Execution rlogin command open a terminal phase of operation, and log the remote host.

grammar

rlogin [-8EL][-e <脱离字符>][-l <用户名称>][主机名称或IP地址]

Necessary parameters:

  • -E Ignore escape characters
  • -8 Recognizes only eight word characters
  • -L Allow rlogin session to run in litout mode
  • -ec set escape character c
  • -c Disconnect ask for confirmation before
  • -a mandatory remote host After sending an empty local username request a password
  • -f sent to the remote host a local authentication
  • -F Send a local authentication can be forwarded to the remote host
  • 7 -7 enforce transfer
  • -d turns on debugging for the remote host communication TCP socket
  • -k requirements tisckets includes remote host
  • -x initiate data transfers DES encryption
  • -4 Kerkberos use only certified version 4

Selection parameters:

  • -e <character> Character Set exit
  • -l <user> Specifies the user login
  • -t <terminal type> Set the terminal type
  • Examples

    Display rlogin service is open

    # chkconfig --list //检测rlogin服务是否开启
    

    Open rlogin service

    # chkconfig rlogin on //开启rlogin服务
    

    Login remote host

    # rlogin 192.168.1.88
    Password:
    Password:
    Login incorrect
    Login:root
    Passwd:
    Login incorrect
    Login:kk
    Passwd:
    

    Specifies the user login name remote host

    # rlogin 192.168.1.88 -l hnlinux
    
    Passord:
    Last login:Mon May 28 15:30:25 from 192.168.1.88
    
    # 
    

    Linux command Daquan Linux command Daquan