ycliper

Популярное

Музыка Кино и Анимация Автомобили Животные Спорт Путешествия Игры Юмор

Интересные видео

2025 Сериалы Трейлеры Новости Как сделать Видеоуроки Diy своими руками

Топ запросов

смотреть а4 schoolboy runaway турецкий сериал смотреть мультфильмы эдисон
Скачать

Unleash the Awesome Power of SSH

Автор: Joe Collins (EzeeLinux)

Загружено: 2025-10-11

Просмотров: 5551

Описание: This video shows how to setup ssh on your home network.

Unleash The Awesome Power of SSH

Terms

DNS = Domain Name System
DHCP = Dynamic Host Configuration Protocol
IP = Internet Protocol
LAN = Local Area Network
SFTP = SSH File Transfer Protocol
SSHFS SSH File System
SSH = Secure Shell

Setup Static IP Addresses for Host Machines

Find IP and netmask:

ip a
or
ifconfig

ex. 192.168.0.xxx/24 (24 = 255.255.255.0 netmask)

Find default gateway:

route -n

ex. 192.168.0.1

install SSH Server on Debian/Ubuntu Systems:

sudo apt install openssh-server

Generate SSH Keys:

ssh-keygen -t rsa -b 4096 -C "your name or email."

Copy public key to remote host:

ssh-copy-id user@remote_host

Note: You can copy key pairs directly to new hosts to facilitate sign in to other machines on the network.

Using SFTP:

sftp user@remote_host

ls = list the directory on the remote machine
lls = lists the directory on the local machine
cd = change directory on the remote machine
lcd = change directory on the local machine
get filename1 filename2 = get files from remote machine
get -r directoryname = get a directory from the remote machine
put filename1 filename2 = send files to the remote machine
put -r directoryname = send a directory to the remote machine
bye, exit = leaves SFTP and breaks the connection.

RSYNC over SSH

rsync -av --delete source_directory/ destination_directory.

ex. rsync -av --delete [email protected]:Music/ Music/

Using SSHFS

Install SSHFS on Debian/Ubuntu systems with:

sudo apt install sshfs

create a network share by mounting a directory from the remote host to an empty directory on the local host:

sshfs user@remote_host:directory_path local_directory

SSHIN

#!/bin/bash

SSH login shorthand command: "sshin (last two digits of IP)"
By Joe Collins.

ssh -X 192.168.0."$1"

SFTPIN

#!/bin/bash

SFTP Shorthand command: "sftpin" (last two digits of host IP)
By Joe Collins.

sftp 192.168.0."$1"

Не удается загрузить Youtube-плеер. Проверьте блокировку Youtube в вашей сети.
Повторяем попытку...
Unleash the Awesome Power of SSH

Поделиться в:

Доступные форматы для скачивания:

Скачать видео

  • Информация по загрузке:

Скачать аудио

Похожие видео

Сисадмины больше не нужны? Gemini настраивает Linux сервер и устанавливает cтек N8N. ЭТО ЗАКОННО?

Сисадмины больше не нужны? Gemini настраивает Linux сервер и устанавливает cтек N8N. ЭТО ЗАКОННО?

A Look at Anacron | Scheduling Tasks in Linux

A Look at Anacron | Scheduling Tasks in Linux

Как загружается Linux

Как загружается Linux

БЕЛЫЕ СПИСКИ: какой VPN-протокол справится? Сравниваю все

БЕЛЫЕ СПИСКИ: какой VPN-протокол справится? Сравниваю все

Let's Write A Script! | How To Create BASH Scripts In Linux

Let's Write A Script! | How To Create BASH Scripts In Linux

Text Files and Text Editors In  Linux

Text Files and Text Editors In Linux

Linux Backup Strategies | Exploring the rsync Command

Linux Backup Strategies | Exploring the rsync Command

Learning The Linux File System 2025

Learning The Linux File System 2025

You want a real Name Server at home? // DNS

You want a real Name Server at home? // DNS

РОУТЕР С VPN за 1200₽ | OpenWRT + Podkop + Amnezia | Полный Гайд на Xiaomi 4С

РОУТЕР С VPN за 1200₽ | OpenWRT + Podkop + Amnezia | Полный Гайд на Xiaomi 4С

Still Loving Linux in 2025! | Maintaining My Network of Linux Machines

Still Loving Linux in 2025! | Maintaining My Network of Linux Machines

So, you want to start self-hosting? Part 1 - How to install Proxmox and pick your hardware.

So, you want to start self-hosting? Part 1 - How to install Proxmox and pick your hardware.

Как Ubuntu Предала Linux - Вся Правда о Взлёте и Падении Canonical

Как Ubuntu Предала Linux - Вся Правда о Взлёте и Падении Canonical

Ваш интернет-провайдер следит за всем — исправьте это с помощью DNS-фильтрации!

Ваш интернет-провайдер следит за всем — исправьте это с помощью DNS-фильтрации!

Как найти помощь по Linux

Как найти помощь по Linux

SSH for Beginners: The Ultimate Getting Started Guide

SSH for Beginners: The Ultimate Getting Started Guide

Why I Don't Use #!/bin/bash - Shebangs Explained!

Why I Don't Use #!/bin/bash - Shebangs Explained!

Понимание Active Directory и групповой политики

Понимание Active Directory и групповой политики

Have you ever used the

Have you ever used the "column" command in Linux?

Лаба в 10

Лаба в 10" рэке. Часть 2. Кластер и NAS

© 2025 ycliper. Все права защищены.



  • Контакты
  • О нас
  • Политика конфиденциальности



Контакты для правообладателей: [email protected]