mirror of
https://github.com/onceupon/Bash-Oneliner.git
synced 2024-11-22 21:07:00 +00:00
Networking
- Nc as a chat tool!
This commit is contained in:
parent
39fbcae0b7
commit
7e9a091b3f
12
README.md
12
README.md
@ -2358,6 +2358,16 @@ nc -vw5 google.com 22
|
|||||||
# nc: connect to google.com port 22 (tcp) failed: Network is unreachable
|
# nc: connect to google.com port 22 (tcp) failed: Network is unreachable
|
||||||
```
|
```
|
||||||
|
|
||||||
|
##### Nc as a chat tool!
|
||||||
|
```bash
|
||||||
|
# From server A:
|
||||||
|
$ sudo nc -l 80
|
||||||
|
# then you can connect to the 80 port from another server (e.g. server B):
|
||||||
|
# e.g. telent <server A IP address> 80
|
||||||
|
# then type sth in server B
|
||||||
|
# and you will see the result in server A!
|
||||||
|
```
|
||||||
|
|
||||||
##### Look up website information (e.g. name server), searches for an object in a RFC 3912 database.
|
##### Look up website information (e.g. name server), searches for an object in a RFC 3912 database.
|
||||||
```bash
|
```bash
|
||||||
whois google.com
|
whois google.com
|
||||||
@ -2768,8 +2778,6 @@ while read a b; do yes $b |head -n $a ;done <test.txt
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Others
|
## Others
|
||||||
[[back to top](#handy-bash-one-liners)]
|
[[back to top](#handy-bash-one-liners)]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user