Difference between revisions of "User:Scott/04"
Jump to navigation
Jump to search
Line 166: | Line 166: | ||
=NFS - Network File Sharing (install server)= | =NFS - Network File Sharing (install server)= | ||
− | [http://www.youtube.com/watch?v=d9uokz7yzPg&feature=related YouTube] | + | [http://www.youtube.com/watch?v=d9uokz7yzPg&feature=related YouTube-ServerSide] |
[https://help.ubuntu.com/community/SettingUpNFSHowTo SettingUpNFS] | [https://help.ubuntu.com/community/SettingUpNFSHowTo SettingUpNFS] | ||
Line 201: | Line 201: | ||
=NFS - Network File Sharing (install client)= | =NFS - Network File Sharing (install client)= | ||
+ | [http://www.youtube.com/watch?v=8YPCKK1YfzY YouTube-ClientSide] | ||
==Install client tools for mounting NFS file system== | ==Install client tools for mounting NFS file system== | ||
sudo apt-get install nfs-common | sudo apt-get install nfs-common | ||
Line 207: | Line 208: | ||
sudo mount -t nfs4 -o proto=tcp,port=2049 RemoteHostIP:/dir/ShareName LocalFolder | sudo mount -t nfs4 -o proto=tcp,port=2049 RemoteHostIP:/dir/ShareName LocalFolder | ||
(LocalFolder on client) | (LocalFolder on client) | ||
+ | |||
+ | =Configuring SAMBA in Ubuntu - Part 1 of 4= | ||
+ | [http://www.youtube.com/watch?v=Bo9HOadl-YM&feature=related Samba-Part1] | ||
+ | [http://www.youtube.com/watch?v=LdlxPB2PCvg&feature=related Samba-Part2] | ||
+ | |||
+ | =Ubuntu Network Configuration Files - Part 1 of 3= | ||
+ | [http://www.youtube.com/watch?v=ua1O5WwmIR8&feature=related config-Part1] | ||
+ | [http://www.youtube.com/watch?v=v5vKXwAUEfU&feature=related config-Part2] | ||
+ | [http://www.youtube.com/watch?v=B6xgwNEURmM&feature=related config-Part3] |
Revision as of 11:50, 6 November 2011
Network Troubleshooting -------------------------------- Home Page user:scott Tech Support user:scott/02 Dir & Files user:scott/03 Network user:scott/04 Troubleshoot user:scott/05 Laptops user:scott/06 Resources user:scott/07 Notes user:scott/08
DHCP syn ak
sudo dhclient
Open Ports (view)
nmap -P 0 localhost ( sudo apt-get install nmap)
netstat -l
TCP/IP Open Connection
lsof -i (domain names) lsof -i -n (ip address)
DNS (view records)
dig well.com
Reset Modem and Router
Unplug Modem and Router Reset Modem and Router (paper clip) Reboot Machine Browser Off-line?
BASH Shell (TS connection)
Adapter or Onboard
lspci
lspci - Ethernet controller: Broadcom Corporation NetXtreme BCM5752 Gigabit Ethernet PCI Express (rev 01)
lsusb
lsusb - Bus 001 Device 003: ID 13b1:0026 Linksys
DHCP
DHCP Discover
sudo dhclient Listening on LPF/eth0/00:17:08:5f:dc:73 Sending on LPF/eth0/00:17:08:5f:dc:73 DHCP-REQUEST of 192.168.1.8 on eth0 to 255.255.255.255 port 67 DHCPA-CK of 192.168.1.8 from 192.168.1.1 bound to 192.168.1.8 -- renewal in 36968 seconds.
ifconfig
ifconfig eth0 Link encap:Ethernet HWaddr 00:17:08:5f:dc:73 inet addr:192.168.1.8 Bcast:192.168.1.255 Mask:255.255.255.0
wlan0 Link encap:Ethernet HWaddr 00:18:39:1d:31:d0 inet addr:192.168.1.7 Bcast:192.168.1.255 Mask:255.255.255.0
iwconfig
iwconfig wlan0 IEEE 802.11bg ESSID:"Karen's Wireless Network" Mode:Managed Frequency:2.437 GHz Access Point: 00:18:01:FE:AB:AC
Ping (gateway)
ping localhost 127.0.0.1 ping gateway (route -n) ping 74.125.225.48 (google.com)
DNS (view records)
Dig well.com (DNS NS + A records no MX records)
ping well.com traceroute well.com (if installed)
Network Tools (TS Connection)
System -> Administration -> Network Tools
Devices Tab
loopback Interface (lo) Protocol IPv4 - 127.0.0.1 Hardware address: Loopback Ethernet Interface (eth0) Protocol IPv4 - 192.168.1.x Hardware address: 00:17:08:5f:dc:73
Wireless Interface (wlan0) Protocol IPv4 - 192.168.1.x Hardware address: 00:17:08:5f:dc:73
Ping Tab
ping 127.0.0.1
Netstat Tab
Determine gateway 192.168.1.x ping gateway ping 74.125.225.48 (google.com)
Lookup Tab - DNS Records
lookup 208.17.81.205 (well.com) lookup well.com (default information) lookup well.com (Mailbox Exchange)
Traceroute Tab
traceroute 74.125.225.48 (google.com) traceroute google.com traceroute 208.17.81.205 (well.com) traceroute well.com
Network Manager
System -> Preferences -> Startup Applications EDIT = nm-applet --sm-disable
Network Cards
==PCI Adapter== AZIO AWD154B (802.11G Wireless PCI Adapter)
USB Adapter
Linksys Wireless-G USB Network Adapter with SpeedBooster v2
Dial-Up
- Whizcoho – DIAL-UP
user = freegeek@whiz.to pw = test123 Gresham Number: 503-465-4055 503 974-0040 503 647-5957 – support
http://wiki.freegeek.org/index.php/Dialup_configuration
etc/ppp/pap-secrets # * password “bbooth76” * ‘barbwies” freegeek\@wiz\.to * test123 bbooth76\@whiz\.to * jlister
About ssh
Generating a key pair
ssh-keygen -t dsa http://support.suso.com/supki/SSH_Tutorial_for_Linux
NFS - Network File Sharing (install server)
install nfs-server
sudo apt-get install nfs-kernel-server
sudo mkdir FolderName (root) umask = 0022 / permissions = 755 sudo chmod 777 file1
Create local settings such as ...
POSIX permissions (owner and group)
The most restrictive combo of Local and NFS permissions is what applies. If a folder has full permissions locally (777) but I export that folder as (ro) instead if (rw), My actual permissions are read-only.
cat /etc/exports sudo nano /etc/exports (add the following lines) /dir/FolderName1 192.168.1.7/255.255.255.0(rw,sync) /dir/FolderName2 x.x.x.x/x.x.x.x(ro,sync)
Export the file system
sudo exportfs -a
Restart the NFS daemon
sudo /etc/init.d/nfs-kernel-server restart
NFS - Network File Sharing (install client)
Install client tools for mounting NFS file system
sudo apt-get install nfs-common
sudo mount -t nfs4 -o proto=tcp,port=2049 RemoteHostIP:/dir/ShareName LocalFolder (LocalFolder on client)