User Tools

Site Tools


computing:linux

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
computing:linux [2017/10/14 01:10] oemb1905computing:linux [2017/10/14 01:12] oemb1905
Line 190: Line 190:
   public = yes   public = yes
   writable = yes   writable = yes
 +
 +#Notes from Schaefer Consulting work
 +
 +Verifying eop (power line) connection between two devices (adapter), and then deploying
 +
 +#eop - start network manager or restart or stop
 +  /etc/init.d/network-manager stop <start/restart>
 +#eop - verify dhcp client is working for device eno1 with verbose out
 +  dhclient -v eno1
 +#eop - preferred address assignment protocol using CIDR notation on device eno1
 +  ip address add 192.1##.1##.2/24 dev eno1
 +#eop - verify connection status on eno1
 +  ethtool eno1  
 +
 +#interface with switch using screen
 +  screen /dev/ttyUSB0/ 19200
 +
 +#calculate subnet automatically
 +  subnetcalc
 +  
 +#Establish ssh proxy server on localhost by Dynamically binding the localhost to the server
 +  ssh -D <port#> <user>@<domain.com>
 +  
 +#get block ID
 +  blkid
 +  
 +#get list of adapters and chipset manufacturers
 +  lspci
 +
 +#nmap
 +  nmap -sP 10.##.##.0/24
 +  
 +#git
 +  git clone ssh://<user>@<##.##.##.##>/home/git .
 +  
 +#tcpdump common uses
 +
 +  tcpdump -n -i <eth0> <host> <ip>
 +  tcpdump -n -i <eth0> <port> <#>
 +
 +#find utils
 +
 +  find . -iname "<name>" 
  
  --- //[[netcmnd@jonathanhaack.com|oemb1905]] 2017/06/30 23:53//  --- //[[netcmnd@jonathanhaack.com|oemb1905]] 2017/06/30 23:53//