Ubuntu 18.04 Servidor Raspberry Pi sem fio

1

Estou tentando fazer com que meu Raspberry Pi funcione sem fio para que eu possa me conectar às minhas duas redes separadas, como fiz com o Raspbian. Eu segui alguns tutoriais on-line, este foi o último que parecia me levar a algum lugar: link

Mas ainda não há rede.

ifconfig:

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.17  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 fe80::ba27:ebff:fea3:7b04  prefixlen 64  scopeid 0x20<link>
        ether b8:27:eb:a3:7b:04  txqueuelen 1000  (Ethernet)
        RX packets 619  bytes 142348 (142.3 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 326  bytes 47342 (47.3 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 211  bytes 52909 (52.9 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 211  bytes 52909 (52.9 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

iwconfig:

lo        no wireless extensions.

eth0      no wireless extensions.

wlan0     IEEE 802.11  ESSID:off/any
          Mode:Managed  Access Point: Not-Associated   Tx-Power=0 dBm
          Retry short limit:7   RTS thr=2347 B   Fragment thr:off
          Power Management:on

lsusb:

Bus 001 Device 005: ID 046d:c52b Logitech, Inc. Unifying Receiver
Bus 001 Device 004: ID 0bda:8176 Realtek Semiconductor Corp. RTL8188CUS 802.11n WLAN Adapter
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. SMSC9512/9514 Fast Ethernet Adapter
Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp. SMC9514 Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

Tentei fazer isso: link

nmcli radio wifi on:

Error: NetworkManager is not running.

nmcli --version:

nmcli tool, version 1.10.6

Qualquer ajuda é apreciada, estou ficando cansado de tropeçar no meu cabo e não conseguir me conectar ao wireless e ao desenvolvimento do PLC.

lsb_release -d:

Description:    Ubuntu 18.04 LTS

cat / etc / netplan / *. yaml:

# This file is generated from information provided by
# the datasource.  Changes to it will not persist across an instance.
# To disable cloud-init's network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
    version: 2
    ethernets:
        eth0:
            dhcp4: true
            match:
                macaddress: b8:27:eb:a3:7b:04
            set-name: eth0
    
por Josie 09.05.2018 / 04:00

1 resposta

2

Você precisa atualizar sua configuração do netplan.

Abaixo está minha configuração em /etc/netplan/00-snapd-config.yaml . Eu criei inicialmente usando console-conf , mas tive que editá-lo manualmente para que funcionasse.

ubuntu@ubuntu:~$ sudo cat /etc/netplan/00-snapd-config.yaml
# This is the network config written by 'console_conf'
network:
  ethernets:
    eth0:
      dhcp4: true
      match:
        macaddress: b8:27:eb:03:91:12
      set-name: eth0
  version: 2
  wifis:
    wlan0:
      access-points:
        my_wifi_ssid: {password: my_wifi_password}
      addresses: []
      dhcp4: true
      nameservers: {}

Instalei pela primeira vez console-conf usando sudo apt install console-conf e, em seguida, executei-o usando sudo console-conf .

Curiosamente, até mesmo essa ferramenta não conseguiu gerar uma configuração correta. Esta mensagem de erro apareceu:

Network configuration failed: 'Error in network definition 
//etc/netplan/00-snapd-config.yaml line 4 column 6: eth0:
set-name: requires match: properties\n'

Eu modifiquei /etc/netplan/00-snapd-config.yaml manualmente - copiei a seção ethernets de 50-cloud-init.yaml e usei recuo consistente em todos os lugares.

Por fim, corro sudo netplan apply . Voila - Internet agora funciona sem o cabo Ethernet!

PS: duvido que você precise passar por console-conf - basta copiar minha configuração e adaptá-la ao seu caso de uso.

    
por kkom 09.07.2018 / 19:55