เชื่อมต่อ Raspberry PI กับอินเทอร์เน็ตผ่านบริดจ์เครือข่าย


1

ฉันต้องการเชื่อมต่อ Raspberry PI กับอินเทอร์เน็ตผ่านบริดจ์เครือข่ายบนแล็ปท็อปของฉัน เป็นเครื่อง Windows 8.1 ฉันเชื่อมต่ออีเธอร์เน็ตและอินเทอร์เฟซแบบไร้สายแล้ว Raspberry PI มีที่อยู่ IP แบบคงที่ ฉันพยายามตามบทช่วยสอนต่อไปนี้บอกว่า

Router 192.168.1.1

ของ windows 192.168.1.15

ราสเบอร์รี่ PI 192.168.1.100

ฉันสามารถ ping เราเตอร์และ Raspberry จากพีซีและพีซีจาก Raspberry ปัญหาคือเมื่อฉันพยายาม ping Router หรือ google.pl จาก Raspberry:

pi@raspberrypi ~ $ ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
^C
--- 192.168.1.1 ping statistics ---
8 packets transmitted, 0 received, 100% packet loss, time 7006ms

ไฟร์วอลล์บนพีซีปิดอยู่ นี่คือifconfig:

pi@raspberrypi ~ $ ifconfig eth0
eth0      Link encap:Ethernet  HWaddr b8:27:eb:9a:ea:1d
          inet addr:192.168.1.100  Bcast:192.168.1.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1796 errors:0 dropped:0 overruns:0 frame:0
          TX packets:426 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:133358 (130.2 KiB)  TX bytes:54438 (53.1 KiB)

ตารางเส้นทาง:

pi@raspberrypi ~ $ route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0        0 eth0
192.168.1.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0

ตาราง ARP:

pi@raspberrypi ~ $ arp -n
Address                  HWtype  HWaddress           Flags Mask            Iface
192.168.1.1              ether   88:ae:1d:7e:07:2f   C                     eth0
192.168.1.15             ether   88:ae:1d:7e:07:2f   C                     eth0

และอินเตอร์เฟส

pi@raspberrypi ~ $ cat /etc/network/interfaces
auto lo

iface lo inet loopback
iface eth0 inet static
        address 192.168.1.100
        netmask 255.255.255.0
        gateway 192.168.1.1

allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp

ฉันพยายามจัดการกับอินเตอร์เฟสเกตเวย์เริ่มต้นดูเหมือนว่าไม่มีอะไรทำงาน

ipconfig -allจาก windows อยู่ที่นี่


Ipconfig / ทั้งหมดจาก Windows ได้ไหม
ลุคชาวแคนาดา

ลุคขอบคุณสำหรับคำตอบ ipconfig - ทั้งหมดอยู่ที่นี่: ลิงค์
johnatann
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.