Å×Å©³ë ÄÄÇ»ÅÍ

[¿ø°Ý¿äû] . [ȸ¿øÀÚ·á½Ç] [EDIT]     [Win98] [Win2000] [Win7] [win10] [WinServer] [Linux] [A/SÀÚ·á] [Driver] [UTIL] [º¹Á¦±â] [TC]

__Today: __
Your ip : 3.14.79.63
ȸ¿ø¾ÆÀ̵ð 
Æнº¿öµå
  ÄÄÇ»ÅÍ
  ¸ð´ÏÅÍ
  À×Å©/Åä³Ê-¼Ò¸ðÇ°
  ÄÄÇ»Åͺ»Ã¼ºÎÇ°
  ½ºÄɳÊ
  ÇÁ¸°ÅÍ
  ÄÄÇ»ÅͼҸðÇ°
  ³×Æ®¿öÅ©
  ¼ÒÇÁÆ®¿þ¾î

ÀüÈ­ : 062-224-6450
Æѽº : 062-227-6450

  Å×Å©³ëÄÄÇ»ÅÍ

[ ÀÚ·á½Ç ]

±¤°í¼º ±ÛÀ̳ª ºÒ¹ýÀÚ·á ¾÷·Îµå¸¦ ±ÝÇÕ´Ï´Ù.

http://www.monmouth.demon.co.uk/ipsubs/portfw-
À̸§ : ÇãÁ¤±Õ     ¹øÈ£ : 27.2     Á¶È¸ : 92131
¾÷·Îµå : 2001-05-18 09:17:35     ¼öÁ¤ÀÏ : 2001-05-25 22:07:19

Port Forwarding - with Linux 2.2
What's Changes
If you haven't used Port Forwarding before, you can skip this section. This is quick guide to the changes since 2.0.36. Most of the changes are minor and can be ignored.

You don't need any kernel patches. The kernel already has the port forwarding code.
There is a new tool to administer port forwarding rules - ipmasqadm replaces ipportfw. It's easy to convert to the new tool - just replace "ipportfw" by "ipmasqadm portfw" and it will work.
Download ipmasqadm from http://juanjox.kernelnotes.org/ or if you using Redhat 6, download the RPMs from: ftp://ftp.redhat.com/pub/contrib/libc6/i386/ipmasqadm-0.4.2-3.i386.rpm.
If you are using modern RedHat kernels, you have already have Port Forwarding included as a module. To install it run:


modprobe ip_masq_portfw.o
If you use other distributions, you'll need to compile a new kernel with Port Forwarding support. You'll need to include the following options:

CONFIG_EXPERIMENTAL
CONFIG_IP_MASQUERADE
CONFIG_IP_MASQUERADE_IPPORTFW
If you're not familiar with compiling and installing kernels, read the Kernel HOWTO.

Before attempting to setup Port forwarding, set up and use IP Masquerading. Until it's enabled with ipportfw, Port forwarding will not affect IP Masquerading in any way. You can find more information about masquerading in the Masquerading HOWTO. The IP Chains HOWTO is also useful.

To configure redirection of a local port (local refers to the machine running the masquerading), you need to use ipportfw. It's options can be described as:


ipmasqadm portfw -h


Usage: portfw -a -P PROTO -L LADDR LPORT -R RADDR RPORT [-p PREF] add entry
       portfw -d -P PROTO -L LADDR LPORT [-R RADDR RPORT]         delete entry
       portfw -f                                                  clear table
       portfw -l                                                  list table
       portfw {args} -n                                           no names

PROTO is the protocol, can be "tcp" or "udp"
LADDR is the local interface receiving packets to be forwarded.
LPORT is the port being redirected.
RADDR is the remote address.
RPORT is the port being redirected to.
PREF  is the preference level (load balancing, default=10)


Need an Example. OK...

ipchains -P forward DENY
ipchains -A forward -i ppp0 -j MASQ
echo 1 > /proc/sys/net/ipv4/ip_forward
 
#this will clear all previous port forward rules
ipmasqadm portfw -f

#this will redirect all web conections (port 80) to you intenal server (using the tcp protocal (proto))
ipmasqadm portfw -a -P tcp -L 194.160.1.1 80 -R 10.10.0.2 80

#this will redirect timed connections
ipmasqadm portfw -a -P udp -L 194.160.1.1 525 -R 10.0.0.2 525

ipmasqadm portfw -l
prot localaddr            rediraddr               lport    rport  pcnt  pref
TCP  guardian             tricord                  www      www     6    10
UPD  guardian             tricord                  time     time    10   10



À­±Û : 2001-05-15 09:37:53,   27¹øÀÇ °ü·Ã±Û ¹Ù·Îº¸±â,   ÷ºÎÆÄÀÏ(ipvsadm-1.15.tar.gz, 25,001Byte)ÀÌ ÀÖ½À´Ï´Ù. ipvsadm install file
¹Ø±Û : 2001-01-27 09:22:43,   26¹ø ±Û ¹Ù·Îº¸±â ping¿¡ ´ëÇØ ¹æÀÀ ¾ÈÇϱâ
  Absolute number:59
Ȩ¾²±â°ü·Ã±ÛÀü´Þ¼öÁ¤»èÁ¦¸ñ·Ï
 
¹øÈ£ Á¦¸ñ ÷ºÎÆÄÀÏ Å©±â Àü¼Û À̸§ ¾÷·Îµå
34 2001-05-02 09:04:08,   34¹ø ±Û ¹Ù·Îº¸±â ¿ø°ÝÄÄÇ»ÅÍ¿¡ ÀÖ´Â ÇÁ·Î±×·¥À» »ç¿ëÇÒ     0 ÇãÁ¤±Õ 05-02
33 2001-04-06 11:09:12,   33¹ø ±Û ¹Ù·Îº¸±â ¸®´ª½º ºÎÆà µð½ºÄÏ ¸¸µé±â, LILO°¡     0 ÇãÁ¤±Õ 04-06
32 2001-04-06 10:30:07,   32¹ø ±Û ¹Ù·Îº¸±â ext3 ÆÄÀϽýºÅÛ±¸ÃàÇϱâ.     0 ÇãÁ¤±Õ 04-06
31 2001-04-04 18:17:58,   31¹ø ±Û ¹Ù·Îº¸±â À¯µ¿¾ÆÀÌÇÇ¿¡¼­ ¾ÆÀÌÇÇ ¾Ë¾Æ³»±â     0 ÇãÁ¤±Õ 04-04
31¹øÀÇ °ü·Ã±Û 2001-05-05 23:49:56,   31¹øÀÇ °ü·Ã±Û ¹Ù·Îº¸±â,   ÷ºÎÆÄÀÏ(ipname, 1,315Byte)ÀÌ ÀÖ½À´Ï´Ù. Á¦°¡ adsl¿¡¼­ »ç¿ëÇÑ sample ´Ù¿î·Îµå : ipname (1,315Byte) ipname 1KB 3914 ¼Õ´Ô 05-05
31¹øÀÇ °ü·Ã±Û 2001-05-30 10:27:37,   31¹øÀÇ °ü·Ã±Û ¹Ù·Îº¸±â ¾ÆÀÌÇÇ ¾Ë¾Æ³»±â+ipmasquade »ùÇà     0 ÇãÁ¤±Õ 05-30
31¹øÀÇ °ü·Ã±Û 2001-07-22 17:41:15,   31¹øÀÇ °ü·Ã±Û ¹Ù·Îº¸±â Re: À¯µ¿¾ÆÀÌÇÇ¿¡¼­ ¾ÆÀÌÇÇ ¾Ë¾Æ³»     0 ¼Õ´Ô 07-22
30 2001-03-26 17:04:23,   30¹ø ±Û ¹Ù·Îº¸±â,   ÷ºÎÆÄÀÏ(kernel241.txt, 48,130Byte)ÀÌ ÀÖ½À´Ï´Ù. kernel 2.4.1 ¼³Ä¡Çϱ⠴ٿî·Îµå : kernel241.txt (48,130Byte) kernel241.txt 47KB 13075 Mr,Çã 03-26
29 2001-02-09 09:11:04,   29¹ø ±Û ¹Ù·Îº¸±â CTRL+D Reboot login root password     0 Çã¾¾ 02-09
28 2001-01-27 09:35:25,   28¹ø ±Û ¹Ù·Îº¸±â,   ÷ºÎÆÄÀÏ(Web_DB_Linux¿¬µ¿.txt, 27,560Byte)ÀÌ ÀÖ½À´Ï´Ù. racle8i(8.1.5)+Apache+PHP4+Mysql+j ´Ù¿î·Îµå : Web_DB_Linux¿¬µ¿.txt (27,560Byte) Web_DB_Linux¿¬ 26KB 13919 »ç¿ëÀÚ 01-27
27 2001-01-27 09:33:11,   27¹ø ±Û ¹Ù·Îº¸±â »ç¼³IP·Î ¼­¹ö¸¦ ±¸Ãà     0 »ç¿ëÀÚ 01-27
27¹øÀÇ °ü·Ã±Û 2001-05-15 09:37:53,   27¹øÀÇ °ü·Ã±Û ¹Ù·Îº¸±â,   ÷ºÎÆÄÀÏ(ipvsadm-1.15.tar.gz, 25,001Byte)ÀÌ ÀÖ½À´Ï´Ù. ipvsadm install file ´Ù¿î·Îµå : ipvsadm-1.15.tar.gz (25,001Byte) ipvsadm-1.15.t 24KB 3759 ÇãÁ¤±Õ 05-15
27¹øÀÇ °ü·Ã±Û 2001-05-18 09:17:35,   27¹øÀÇ °ü·Ã±Û ¹Ù·Îº¸±â http://www.monmouth.demon.co.uk/ ¢¸     0 ÇãÁ¤±Õ 05-18
26 2001-01-27 09:22:43,   26¹ø ±Û ¹Ù·Îº¸±â ping¿¡ ´ëÇØ ¹æÀÀ ¾ÈÇÏ±â     0 »ç¿ëÀÚ 01-27
25 2001-01-27 09:05:33,   25¹ø ±Û ¹Ù·Îº¸±â ¾ÆÆÄÄ¡¿¡¼­ Àü¼Û ¼Óµµ Á¦ÇÑÇÏ±â     0 »ç¿ëÀÚ 01-27
24 2001-01-27 09:03:45,   24¹ø ±Û ¹Ù·Îº¸±â ȨÆäÀÌÁö ±Ü¾î°¡´Â°Í ¹æÁö     0 »ç¿ëÀÚ 01-27
23 2001-01-27 08:58:36,   23¹ø ±Û ¹Ù·Îº¸±â µ¥¸ó /¼­ºñ½º ¼³¸í     0 »ç¿ëÀÚ 01-27
22 2001-01-26 10:48:54,   22¹ø ±Û ¹Ù·Îº¸±â ºñ»ó¿ë ºÎÆõð½ºÅ© ¹Îµé±â     0 »ç¿ëÀÚ 01-26
21 2001-01-26 10:40:00,   21¹ø ±Û ¹Ù·Îº¸±â [MySQL] DB ¹× DB User°ü¸®µµ±¸     0 »ç¿ëÀÚ 01-26
20 2001-01-03 16:50:46,   20¹ø ±Û ¹Ù·Îº¸±â 7.0¿¡¼­ mysql ¹®Á¦     0 ÇãÁ¤±Õ 01-03
20¹øÀÇ °ü·Ã±Û 2001-01-09 16:47:06,   20¹øÀÇ °ü·Ã±Û ¹Ù·Îº¸±â Re: 7.0¿¡¼­ mysql ¹®Á¦ Ãß°¡     0 ÇãÁ¤±Õ 01-09
18 2000-11-17 18:33:47,   18¹ø ±Û ¹Ù·Îº¸±â Àû¼ö³× µ¿³× ÆÁ °Ô½ÃÆÇ     0 Mr.Lee 11-17
17 2000-11-17 18:32:22,   17¹ø ±Û ¹Ù·Îº¸±â Netscape 4.76ÇѱÛÈ­½ÃÅ°´Â ¹æ¹ý     0 Mr.Lee 11-17
16 2000-11-03 11:23:26,   16¹ø ±Û ¹Ù·Îº¸±â ÅؽºÆ® È­ÀÏ¿¡¼­ ^M »©±â     0 ¿î¿µÀÚ 11-03
15 2000-11-03 10:30:13,   15¹ø ±Û ¹Ù·Îº¸±â unix¸í·É¾î     0 ¿î¿µÀÚ 11-03
14 2000-11-03 10:22:10,   14¹ø ±Û ¹Ù·Îº¸±â ¼­¹öÀÌÀüÀ̳ª ¹é¾÷½Ã ¾ÐÃà¹æ¹ý     0 ¿î¿µÀÚ 11-03
14¹øÀÇ °ü·Ã±Û 2002-04-12 19:27:04,   14¹øÀÇ °ü·Ã±Û ¹Ù·Îº¸±â Re: ¼­¹öÀÌÀüÀ̳ª ¹é¾÷½Ã ¾ÐÃà¹æ¹ý     0 °ü¸®ÀÚ 04-12
13 2000-10-26 09:28:18,   13¹ø ±Û ¹Ù·Îº¸±â http://ipwhois.nic.or.kr/     0 ³ª 10-26
12 2000-10-24 09:53:13,   12¹ø ±Û ¹Ù·Îº¸±â µ¿ÀÏ ID ´ÙÁßÁ¢¼Ó Á¦ÇÑ     0 ¿î¿µÀÚ 10-24
12¹øÀÇ °ü·Ã±Û 2001-05-03 12:11:36,   12¹øÀÇ °ü·Ã±Û ¹Ù·Îº¸±â telnet login Á¦ÇÑ     0 ÇãÁ¤±Õ 05-03
 


Copyright (C) 2001 jog.co.kr All rights reserved.