설정
- 라우터는 내 네트워크에서 Wireguard 서버 역할을 합니다.
- 라즈베리 파이
- 운영 체제: Raspbian Buster
- Wi-Fi를 통해 모바일 핫스팟에 연결(인터페이스 wlan0)
- et0은 고정IP로 설정되어 있어 스위치나 라우터 없이 고정IP 장치를 직접 제어할 수 있습니다.
- wg0은 내 라우터의 서버에 연결되도록 구성되었습니다.
질문
wireguard 연결은 eth0을 비활성화한 경우에만 작동합니다 ifconfig eth0 down
.
내가 하고 싶은 것:
Pi에서 소프트웨어 업데이트를 업데이트하고 테스트해야 합니다. 소프트웨어는 eth0에 연결된 장치를 사용하므로 eth0을 활성화해야 합니다.
내가 시도한 것
Google 외에는 아무것도 없지만 내 특정 문제에 맞는 것을 찾을 수 없습니다.
라우팅 테이블을 변경해야 할 것 같은데, Wi-Fi 연결을 방해하고 싶지 않은 사람과 내가 확실하지 않습니다.
Pi의 Wireguard 구성
[Interface]
PrivateKey = myPrivateKey
Address = 192.168.180.201/24
DNS = 192.168.180.1
DNS = fritz.box
[Peer]
PublicKey = myPublicKey
PresharedKey = Key
AllowedIPs = 192.168.180.0/24,0.0.0.0/0
Endpoint = myfritzdomain:59047
PersistentKeepalive = 25
/etch/dhcpcd.conf의 eth0 구성
# A sample configuration for dhcpcd.
# See dhcpcd.conf(5) for details.
# Allow users of this group to interact with dhcpcd via the control socket.
#controlgroup wheel
# Inform the DHCP server of our hostname for DDNS.
hostname
# Use the hardware address of the interface for the Client ID.
clientid
# or
# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
# Some non-RFC compliant DHCP servers do not reply with this set.
# In this case, comment out duid and enable clientid above.
#duid
# Persist interface configuration when dhcpcd exits.
persistent
# Rapid commit support.
# Safe to enable by default because it requires the equivalent option set
# on the server to actually work.
option rapid_commit
# A list of options to request from the DHCP server.
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
# Respect the network MTU. This is applied to DHCP routes.
option interface_mtu
# Most distributions have NTP support.
#option ntp_servers
# A ServerID is required by RFC2131.
require dhcp_server_identifier
# Generate SLAAC address using the Hardware Address of the interface
#slaac hwaddr
# OR generate Stable Private IPv6 Addresses based from the DUID
slaac private
interface eth0
static ip_address=192.168.1.45/16
static routers=192.168.1.1
static domain_name_servers=192.168.1.1
답변1
나에게 있어서 해결책은 static routers
고정 IP를 정의하는 줄을 제거하는 것이었습니다. 둘 다 제거해야 하는지 잘 모르겠습니다. Pi가 아마도 사용할 수 없는 정적 DNS를 통해 내 Wiregurad 도메인을 찾으려고 하기 때문에 DNS를 삭제하는 것만으로도 충분하다고 생각합니다.static domain_name_servers
/etch/dhcpcd.conf
올바른 방향으로 팁을 주신 AB에게 감사드립니다.