리눅스를 서버로 해서 인터넷 공유 할려고 합니다..

ferteen의 이미지

리눅스를 쿠분투 대퍼 사용하고 있는데요.. 동생컴이 윈도우 xp이고요..

허브려 연결해서 인터넷 공유 할려고 합니다..

환경설정에서요.. etho(동생컴과 연결된 랜카드), eth1(메가패스와 연결된 랜카드)입니다..

eth0에
ip : 192.168.0.1,
서브넷 : 255.255.255.0
게이트웨이 : 공란,
DNS : 168.126.63.1

이고요. . 동생컴에서는요.
ip : 192.168.0.2
서브넷 : 255.255.255.0
게이트웨이 : 192.168.0.1
DNS: 168.126.63.1

이렇게 설정해줬습니다.. 제가 윈도우xp를 쓸때는 여기에서 인터넷 연결공유에 체크만 해주니깐 잘 되는데요..
쿠분투 대퍼에서는 그런게 없네요.

iptables에서 설정을 해줘야 되는건가요..? 그런것 같아서 찾아 봤는데.. 찾을수가 없네요.
답변좀 부탁드립니다.

returnet의 이미지

http://wiki.kldp.org/wiki.php/DocbookSgml/Masquerading-Simple-HOWTO
한 일년 정도 전에 이 문서를 참고해서 ferteen님께서 필요하신 환경과
같은 환경을 만들었었습니다.

그때 어디어디를 신경써서 맞추었던지는 잘 기억나지 않네요. 아마 설명
되어 있는대로만 하셔도 잘 작동할 겁니다.
----
http://returnet.blogdns.com

ferteen의 이미지

$> modprobe ipt_MASQUERADE
$> iptables -F; iptables -t nat -F; iptables -t mangle -F
$> iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
$> echo 1 > /proc/sys/net/ipv4/ip_forward
$> iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
$> iptables -A INPUT -m state --state NEW -i ! ppp0 -j ACCEPT
$> iptables -P INPUT DROP # 위의 두 줄이 성공했을 경우에만
$> iptables -A FORWARD -i ppp0 -o ppp0 -j REJECT

위의 8가지 명령을 줬는데 동생컴에서 인터넷이 안됩니다..밑에 두줄이 drop과 reject명령이 이상해서
다시 위에 6가지 명령만 줘봤습니다... 그런데도 안되네요..
보통 eth0이 모뎀과 연결된 카드고 eth1이 허브와 연결되는 카드잖아요.. 전 반대로 되있는데요.
eth0이 허브와 연결되어 있고 eth1이 케이블모뎀과 연결되어 있습니다. 이런 과정에서 제가 잘못한게 있나요.

무한포옹의 이미지

ifconfig 명령을 내렸을 때 나오는 결과를
올려 주시겠습니까?

-------------------------------
== warning 대부분 틀린 얘기입니다 warning ===

ferteen의 이미지

eth0 Link encap:Ethernet HWaddr 00:E0:18:AE:DA:87
inet addr:192.168.0.1 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::2e0:18ff:feae:da87/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4 errors:0 dropped:0 overruns:0 frame:0
TX packets:14 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1008 (1008.0 b) TX bytes:1004 (1004.0 b)
Interrupt:193

eth1 Link encap:Ethernet HWaddr 00:E0:4D:04:5D:00
inet6 addr: fe80::2e0:4dff:fe04:5d00/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4930 errors:0 dropped:0 overruns:0 frame:0
TX packets:4218 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:5333250 (5.0 MiB) TX bytes:639819 (624.8 KiB)
Interrupt:185 Base address:0xa000

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:99 errors:0 dropped:0 overruns:0 frame:0
TX packets:99 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6124 (5.9 KiB) TX bytes:6124 (5.9 KiB)

ppp0 Link encap:Point-to-Point Protocol
inet addr:61.80.3.199 P-t-P:211.227.95.1 Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1492 Metric:1
RX packets:4876 errors:0 dropped:0 overruns:0 frame:0
TX packets:4128 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:3
RX bytes:5222656 (4.9 MiB) TX bytes:534693 (522.1 KiB)

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.