고양이 /etc/sysconfig/network

고양이 /etc/sysconfig/network

1and1에 고정 IPv6 주소 세트를 사용하여 설정하려는 서버가 있습니다. 제대로 작동하지 않고 Google에서 찾을 수 있는 모든 포럼과 가이드를 시도해 보았습니다. 기술 지원팀에서는 게이트웨이가 fe80::1이라고 말했습니다. 사용하려는 IPv6 주소는 1and1 제어판을 사용하여 프로비저닝되었으며 내 계정에 할당되었습니다. IPv4 네트워킹이 설정되어 잘 작동합니다. IPv6에 대한 도움이 필요합니다.

관련 구성 파일은 다음과 같습니다.

고양이 /etc/sysconfig/network

NETWORKING=yes
NOZEROCONF=true
GATEWAY=10.255.255.1
NETWORKING_IPV6=yes
IPV6FORWARDING=yes
IPV6_AUTOCONF=no
IPV6_AUTOTUNNEL=no
IPV6_DEFAULTGW=fe80::1
IPV6_DEFAULTDEV=eth0

고양이 /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
NAME=""
NM_CONTROLLED=no
MACADDR=""
MTU=1500
IPADDR=74.208.218.179
NETWORK=74.208.218.179
NETMASK=255.255.255.255
BROADCAST=74.208.218.179
IPV6INIT=yes
IPV6ADDR=2607:F1C0:812:7d10::/56
IPV6ADDR_SECONDARIES="2607:F1C0:812:7d10::1/56 2607:F1C0:812:7d10::2/56 2607:F1C0:812:7d11::/56"
IPV6FORWARDING=yes
IPV6_DEFAULTGW=fe80::1

sysctl을 통해 커널에서 IPv4와 IPv6 모두에 대한 전달을 설정했습니다.

고양이 /etc/sysctl.conf

net.ipv4.ip_forward=1
net.ipv4.tcp_syncookies=1
net.ipv4.conf.default.rp_filter=1
net.ipv4.conf.default.accept_source_route=0
net.ipv6.conf.all.forwarding=1
net.ipv6.conf.all.accept_ra = 0
net.ipv6.conf.all.autoconf = 0
kernel.shmmax=68719476736
kernel.msgmax=65536
kernel.msgmnb=65536
kernel.sysrq=0
kernel.shmall=4294967296
kernel.core_uses_pid=1

다음은 일부 명령의 출력입니다.

ifconfig

eth0    Link encap:Ethernet  HWaddr 00:19:99:27:2B:1D
        inet addr:74.208.218.179  Bcast:74.208.218.179  Mask:255.255.255.255
        inet6 addr: 2607:f1c0:812:7d11::/56 Scope:Global
        inet6 addr: 2607:f1c0:812:7d10::/56 Scope:Global
        inet6 addr: 2607:f1c0:812:7d10::1/56 Scope:Global
        inet6 addr: 2607:f1c0:812:7d10::2/56 Scope:Global
        inet6 addr: fe80::219:99ff:fe27:2b1d/64 Scope:Link
        UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
        RX packets:542041826 errors:158 dropped:0 overruns:0 frame:158
        TX packets:517716410 errors:0 dropped:0 overruns:0 carrier:0
        collisions:0 txqueuelen:1000
        RX bytes:55707235613 (51.8 GiB)  TX bytes:441496177225 (411.1 GiB)
        Interrupt:19 Base address:0xc000

eth0:0  Link encap:Ethernet  HWaddr 00:19:99:27:2B:1D
        inet addr:74.208.109.145  Bcast:74.208.109.145  Mask:255.255.255.255
        UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
        Interrupt:19 Base address:0xc000

eth0:1  Link encap:Ethernet  HWaddr 00:19:99:27:2B:1D
        inet addr:74.208.125.133  Bcast:74.208.125.133  Mask:255.255.255.255
        UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
        Interrupt:19 Base address:0xc000

eth0:2  Link encap:Ethernet  HWaddr 00:19:99:27:2B:1D
        inet addr:74.208.113.67  Bcast:74.208.113.67  Mask:255.255.255.255
        UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
        Interrupt:19 Base address:0xc000

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:2943936 errors:0 dropped:0 overruns:0 frame:0
        TX packets:2943936 errors:0 dropped:0 overruns:0 carrier:0
        collisions:0 txqueuelen:0
        RX bytes:2949514917 (2.7 GiB)  TX bytes:2949514917 (2.7 GiB)

경로 -n -A inet6

Kernel IPv6 routing table
Destination                     Next Hop    Flags   Metric  Ref Use Iface
2607:f1c0:812:7d10::/56         ::          U       256     0   0   eth0
fe80::/64                       ::          U       256     0   0   eth0
::/0                            fe80::1     UG      1       45  0   eth0
::1/128                         ::          U       0       0   1   lo
2607:f1c0:812:7d10::/128        ::          U       0       12  1   lo
2607:f1c0:812:7d10::1/128       ::          U       0       0   1   lo
2607:f1c0:812:7d10::2/128       ::          U       0       0   1   lo
2607:f1c0:812:7d11::/128        ::          U       0       2   1   lo
fe80::/128                      ::          U       0       0   1   lo
fe80::219:99ff:fe27:2b1d/128    ::          U       0       9   1   lo
ff00::/8                        ::          U       256     0   0   eth0

이 설정을 사용하면 기본 게이트웨이를 ping할 수 있지만 1and1 네트워크 외부에는 ping을 할 수 없습니다.

ping6 fe80::1 -I eth0

64 bytes from fe80::1: icmp_seq=1 ttl=64 time=0.442 ms
64 bytes from fe80::1: icmp_seq=2 ttl=64 time=0.447 ms
64 bytes from fe80::1: icmp_seq=3 ttl=64 time=0.450 ms
^C

ping6 ipv6.google.com

PING ipv6.google.com(ord08s12-in-x14.1e100.net) 56 data bytes
^C
--- ipv6.google.com ping statistics ---
4 packets transmitted, 0 received, 100% packet loss, time 6052ms

Traceroute6은 다음과 같은 출력을 제공합니다.

Traceroute6 ipv6.google.com

traceroute to ipv6.google.com (2607:f8b0:4009:806::1014), 30 hops max, 80 byte packets
 1  ae-1.gw-prtr-r5-2a.slr.lxa.oneandone.net (2607:f1c0:0:10::66:a)  0.819 ms  0.944 ms  1.073 ms
 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  * * *

게이트웨이가 fe80::1이고 내 ipv6 주소가 2607:f1c0:812:...인 것이 문제입니까? 내 IP(74.208.0) 이후 IPv4 설정이 작동하는 데 문제가 있었습니다..)는 게이트웨이(10.255.255.1)와 다른 서브넷에 있었습니다.


참고 사항:1and1 서버의 다른 사람에게 도움이 되는 경우 IPv4의 경우 /etc/sysconfig/network-scripts/route-eth0을 다음과 같이 수정해야 합니다.

고양이 /etc/sysconfig/network-scripts/route-eth0

ADDRESS0=10.255.255.1
GATEWAY0=""
NETMASK0=255.255.255.255
ADDRESS1=0.0.0.0
GATEWAY1=10.255.255.1
NETMASK1=0.0.0.0

답변1

설정이 정확했습니다. 1and1 전용 서버가 있는 다른 사람의 경우 트래픽을 얻을 수 있는 유일한 방법은 제어판을 통해 1and1 IPv6 방화벽을 완전히 비활성화하는 것입니다. 규칙을 수정해도 아무런 변화가 없었습니다.

관련 정보