IT/Software/Networking: Difference between revisions
Jump to navigation
Jump to search
Access restrictions were established for this page. If you see this message, you have no access to this page.
Walttheboss (talk | contribs) No edit summary |
Walttheboss (talk | contribs) No edit summary |
||
Line 18: | Line 18: | ||
[[IT/Software/Networking/ZeroTier| ZeroTier]] | [[IT/Software/Networking/ZeroTier| ZeroTier]] | ||
===Scan WiFi for Signal Strength=== | ===Scan WiFi for Signal Strength=== | ||
Line 25: | Line 23: | ||
[[IT/Software/Networking/WiFiScanning | WiFiScanning]] | [[IT/Software/Networking/WiFiScanning | WiFiScanning]] | ||
=== Share a printer so that Windows clients can see and print. === | |||
You need to have samba installed. | |||
CUPS will handle this almost automatically. | |||
You need to make two small chnage to the /etc/samba/smb.conf file. | |||
In the [printers] section: | |||
browseable = yes | |||
guest ok = yes | |||
When done, restart Samba: | |||
sudo service smbd restart | |||
sudo service nmbd restart | |||
Also, one would want to allow the following ports through a firewall (ufw for example) via: | |||
sudo ufw allow 139/tcp | |||
sudo ufw allow 445/tcp | |||
sudo ufw allow 137/udp | |||
sudo ufw allow 138/udp | |||
<br /> |
Revision as of 07:13, 8 September 2021
Basics
Hosts Files
located in /etc/hosts this is one of the most critical files you will ever learn
Netplan
I suppose it is good because smarter people than I adopted it.
The config is very very sensitive to spacing.
ZeroTier
This allows you direct access to any computer as if it had a static IP.
I wish I had learned about this early on.
It allows easily for remote printing and direct NoMachine access.
Scan WiFi for Signal Strength
There are many tools to do this.
You need to have samba installed.
CUPS will handle this almost automatically.
You need to make two small chnage to the /etc/samba/smb.conf file.
In the [printers] section:
browseable = yes guest ok = yes
When done, restart Samba:
sudo service smbd restart sudo service nmbd restart
Also, one would want to allow the following ports through a firewall (ufw for example) via:
sudo ufw allow 139/tcp sudo ufw allow 445/tcp sudo ufw allow 137/udp sudo ufw allow 138/udp