C:\>route print
========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...00 19 xx xx xx xx ...... Realtek RTL8139/810x Family Fast Ethernet NIC
패킷 스케줄러 미니 포트
========================================================================
Active Routes:
Network Destination        Netmask          Gateway       Interface  Metric
          0.0.0.0          0.0.0.0      192.168.0.1     192.168.0.3       20
        127.0.0.0        255.0.0.0        127.0.0.1       127.0.0.1       1
      192.168.0.0    255.255.255.0      192.168.0.3     192.168.0.3       20
      192.168.0.3  255.255.255.255        127.0.0.1       127.0.0.1       20
    192.168.0.255  255.255.255.255      192.168.0.3     192.168.0.3       20
        224.0.0.0        240.0.0.0      192.168.0.3     192.168.0.3       20
  255.255.255.255  255.255.255.255      192.168.0.3     192.168.0.3       1
Default Gateway:       192.168.0.1
========================================================================
Persistent Routes:
C:\>route add  192.168.1.0  mask 255.255.255.0  192.168.0.6   ==> 추가
C:\>route delete  192.168.1.0  mask 255.255.255.0  192.168.0.6  ==> 삭제

C:\>nslookup  ==> 도메인 질의 명령
> set all  ==> 설정되어 있는 기본 질의 옵션들을 보여준다.
C:\>nslookup linuxxxxx.pe.kr
Name:    linuxxxxxx.pe.kr
Address:  114.108.xxx.xxx
C:\>nslookup
ftp.xxxxxxx.com
Non-authoritative answer:
Name:   
ftp.xxxxxxxx.com
Address:  61.81.xxx.xxx

C:\>hostname  ==> 호스트네임 확인 명령
C:\>ftp sunny.xxx.xxx.xxx  ==> 파일 서버 접속 명령어
Connected to sunny.xxx.xxx.xxx.
220 BDC1KR Server (ProFTPD Default Installation) [xxx.xxx.xxx.xxx]
User (sunny.xxx.xxx.xxx:(none)): sunny
331 Password required for sunny
Password: xxxxxxxxxxxxxxx
230 User sunny logged in
ftp>ls <=> dir (원격지 디렉토리 목록을 출력)
ftp>cd /chroot (원격지의 하위 디렉토리로 이동한다.)
ftp>get APM.tar.gz (파일 다운로드)
ftp>lcd \home (로컬 시스템의 경로로 이동)
ftp>put coolgame.exe (파일 업로드)
ftp>mget windows1.exe windows2.exe windows3.exe (파일 동시 여려개 다운.)
ftp>mput up-1.exe up-2.exe (파일 동시 여러개 업로드)
ftp>ascii (파일 전송 기본 모드를 ascii로 변경)
ftp>binary (파일 전송 기본 모드를 binary로 변경)
~윈도는 기본이 binary, 리눅스는 기본이 ascii.
ftp>bye (종료)

C:\>telnet ==> 원격 접속 명령
C:\>telnet 211.238.xxx.xxx<서버IP주소> 25<25포트 접속>
C:\>telnet sunny.xxx.xxx.xxx<서버도메인주소>  110<110포트로 접속>

C:\>getmac ==> rpc프로토콜을 이용해서 원격지에 있는 호스트의 mac주소를 알아내는 명령어이다.
해당 호스트의 계정정보가 필요하다.
C:\>ipxroute ==> NWLink IPX 라우팅 및 원본 라우팅 제어 프로그램 명령이다.

+ Recent posts