Questions tagged «connection»

2
设置WiFi和以太网
我正在为Raspberry Pi的配置苦苦挣扎。我要实现以下目标: eth0:将与静态IP一起使用,并且只能连接到局域网(这将是我的NFS服务器)wlan0:应该连接到我的无线网络以进行Internet访问 由于某种原因,我无法同时激活两个连接(是的,我的电源很好)。以太网将无缘无故地禁用无线。如果我终于把两者都搞定了,那么我将无法ping google.com。我的问题我应该如何正确执行此操作?我的接口文件中包含以下内容: auto lo iface lo inet loopback auto eth0 allow-hotplug eth0 iface eth0 inet static address 192.168.1.101 netmask 255.255.255.0 gateway 0.0.0.0 #auto wlan0 allow-hotplug wlan0 iface wlan0 inet manual wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf iface home inet static address 192.168.0.157 netmask 255.255.255.0 broadcast 192.168.0.255 gateway 192.168.0.1 iface default inet …

1
工作(连接)的wlan0接口上的“连接:网络不可访问”
最终,我设法使wlan0(一个Edimax EW-7811Un USB WiFi加密狗)连接到我的路由器,但是之后,apt-get update我发现Raspberry在本地网络外部看不到。我的Raspberry正在最新的(截至撰写本文时)Raspbian映像上运行。 wlan0已连接到我的路由器,并已获得IP地址 我可以对本地网络中的路由器,打印机和其他计算机执行ping操作,但无法对外部网络中的任何内容执行ping操作(也对本地主机上的环回ping表示“主机无法访问”,但我会说这是NAT取消) 127.0.0.1请求) 我可以成功连接eth0,但是我需要连接wlan0。 ifconfig输出: pi@MinoPi ~ $ ifconfig wlan0 wlan0 Link encap:Ethernet HWaddr *macaddresshere* inet addr:192.168.1.9 Bcast:192.168.1.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:552 errors:0 dropped:6 overruns:0 frame:0 TX packets:289 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:375003 (366.2 KiB) TX bytes:318051 …


1
使用python和蓝牙进行通讯
我正在尝试编写一个简单的程序来在RPi和蓝牙手机之间进行通信。我使用了该教程:用于RPi的Bluetooth Python教程, 能够连接到手机,并且绑定正确。然后我写了这个python脚本: #! /usr/bin/python import serial from protocol import * from MotorControllerP import * def startBluetoothServer(): bluetoothSerial = serial.Serial("/dev/rfcomm1",baudrate=9600) print("Bluetooth connected") try: while 1: data = bluetoothSerial.readLine() if not data: break data = data.decode() print("Data received: "+data) if data[:3] == Client.INIT_HEY: print("Initiallizing connection") bluetoothSerial.write((Server.INIT_OK+"\n").enc$ print("Connection initiallized") elif data[:3] == …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.