Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. root@ubuntu:/home/liam# lshw —class network
  2. *—network
  3. description: Ethernet interface
  4. product: RTL8111/8168/8411 PCI Express Gigabit Ethernet
  5. vendor: Realtek Semiconductor Co., Ltd.
  6. physical id: O
  7. bus info: pci@0000:02:00.0
  8. logical name: enp2s0
  9. version: 06
  10. serial: b8:97:5a:32:c1:5f
  11. size: 10Mbit/s
  12. capacity: 1Gbit/s
  13. width: 64 bits
  14. clock: 33MHz
  15. capabilities: pm msi pciexpress msix vpd bus_master cap_list
  16. configuration: autonegotiation=on broadcast=yes driver:r8169
  17. resources: irq:25 ioport:d000(size=256) memory:f0004000-f000
  18. *-network DISABLED
  19. description: Wireless interface
  20. physical id: 1
  21. bus info: usb@1:2
  22. logical name: wlxec086b1eaf1b
  23. serial: ec:O8:6b:1e:af:1b
  24. capabilities: ethernet physical wireless
  25. configuration: broadcast=yes driver:r8188eu multicast=yes
  26.  
  27. # This file describes the network interfaces available on your system
  28. # and how to activate them. For more information, see interfaces(5).
  29.  
  30. source /etc/network/interfaces.d/*
  31.  
  32. # The loopback network interface
  33. auto lo
  34. iface lo inet loopback
  35.  
  36. # The primary network interface
  37. auto enp2s0
  38. iface enp2s0 inet static
  39. address 192.168.1.200
  40. netmask 255.255.255.0
  41. network 192.168.1.0
  42. broadcast 192.168.1.255
  43. gateway 192.168.1.254
  44. # dns-* options are implemented by the resolvconf package
  45. dns-nameservers 192.168.1.254
  46. wpa-ssid ATT548CA
  47. wpa-psk frank777
  48.  
  49. #auto enp2s0
  50. #iface enp2s0 inet dhcp
  51. # wpa-ssid ATT548CA
  52. # wpa-psk frank777
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement