블로그 이미지
No pain, no gain!
lepoussin

Tag

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
  • total
  • today
  • yesterday
05-05 13:37

'Port Forwarding'에 해당되는 글 2건

  1. 2009.06.26 VirtualBox Port Forwarding 설정
  2. 2007.10.27 윈도우용 Port Forwarding 프로그램
2009. 6. 26. 15:39 Virtual Machine/Sun VirtualBox
VirtualBox Port Forwarding 기능을 이용해 SSH 연결을 설정할 수 있다. Windows Command 창(시작>실행>cmd)에서 다음과 같이 해보자.

Test 환경
  • Host OS : Windows XP SP3
  • Virtual Machine: VirtualBox 2.2.4
  • Guest OS: ubuntu 8.10

설정
> cd C:\Program Files\Sun\xVM VirtualBox

> VBoxManage setextradata "Ubuntu for aESOP S3C6410" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/GuestSSH/Protocol" TCP

> VBoxManage setextradata "Ubuntu for aESOP S3C6410" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/GuestSSH/GuestPort" 22

> VBoxManage setextradata "Ubuntu for aESOP S3C6410" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/GuestSSH/HostPort" 22

[] 안을 상황에 맞게 설정하여 사용하면 된다.
  • [C:\Program Files\Sun\xVM VirtualBox] : VirtualBox 설치 경로
  • "[Ubuntu for aESOP S3C6410]" : VirtualBox에 설치되어 있는 Guest OS 이름
  • ../[GuestSSH]/.. : 원하는 Service 이름
  • [22] : 원하는 Guest Port와 Host Port 번호

확인
> VBoxManage getextra "Ubuntu for aESOP S3C6410" enumerate

해제
해제는 명령에서 값을 제외시키면 된다.
> VBoxManage setextradata "Ubuntu for aESOP S3C6410" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/GuestSSH/Protocol"

> VBoxManage setextradata "Ubuntu for aESOP S3C6410" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/GuestSSH/GuestPort"

> VBoxManage setextradata "Ubuntu for aESOP S3C6410" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/GuestSSH/HostPort"

posted by lepoussin
2007. 10. 27. 13:26 Useful Software

invalid-file

윈도우용 포트 포워딩 프로그램(Freeware)


일반 공유기의 포트 포워딩을 윈도우용 소프트웨어로 구현한 것이라고 보면 된다. 다만 공유기는 포워딩을 하려면 공유기에 물려있는 컴퓨터들에 대해서만 포워딩이 가능하지만 이 프로그램은 사내의 랜 뿐만 아니라 원격지의 어떤 서버에도 포워딩이 가능하다. 예를 들어 'A'라는 컴퓨터에 이 프로그램을 설치해 놓고 80번포트로 들어오는것을  "microsoft.com" 으로 연결해 놓으면 'A'라는 컴퓨터에 연결하는 모든 프로그램은 "microsoft.com"으로 연결이 이루어집니다. 사용자의 입장에서는 'A'라는 서버가 마치 "microsoft.com"인것처럼 사용할 수 있다.

출처 : http://enserver.co.kr

posted by lepoussin