首页
网络
运维
后端
前端
数据库
Linux
生活
瞬间
留言板
图床
关于
小狐狸
行动起来,活在当下
累计撰写
34
篇文章
累计创建
21
个标签
累计收到
2
条评论
栏目
首页
网络
运维
后端
前端
数据库
Linux
生活
瞬间
留言板
图床
关于
目 录
CONTENT
以下是
小狐狸
的文章
2024-07-20
关闭和开启selinux
开启 [root@gao]vim /etc/selinux/config # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enf
2024-07-20
37
0
0
Linux
2024-07-20
更改SSH端口
在安装openssh-server的情况下执行以下操作: vi /etc/ssh/sshd_config # $OpenBSD: sshd_config,v 1.100 2016/08/15 12:32:04 naddy Exp $ # This is the sshd server system
2024-07-20
21
0
0
Linux
2024-07-19
Linux重新生成网卡UUID
uuidgen 网卡名称
2024-07-19
19
0
0
Linux
2024-07-17
lsof命令
查看进程打开的文件 lsof -p <PID> 列出某个进程打开的所有文件 lsof -c sshd 列出某个进程打开的文件,如sshd 查看打开特定文件的进程 lsof /var/log/message 查看是谁在使用message 查看网络信息 lsof -i 列
2024-07-17
14
0
0
Linux
2024-07-17
Linux关闭和开启网卡
ip link set eth0 up/down
2024-07-17
20
0
0
Linux
2024-07-17
Linux查看磁盘UUID
blkid lsblk -f ls -lh /dev/disk/by-uuid/
2024-07-17
29
0
0
Linux
2024-07-17
Linux查看网卡速率
ethtool 网卡名称 Example: ethtool ens33 Settings for ens33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full
2024-07-17
14
0
0
Linux
2024-07-16
iptables
iptables iptables内置了4个表,即filter表、nat表、mangle表和raw表,分别用于实现包过滤,网络地址转换、包重构(修改)和数据跟踪处理。 规则表: 1. filter表——三个链:INPUT、FORWARD、OUTPUT 作用:过滤数据包 内核模块:iptables_f
2024-07-16
17
0
0
Linux
2024-07-16
Centos查看系统版本
cat /etc/issue cat /etc/system-release uname -a
2024-07-16
15
0
0
Linux
2024-07-16
SSH允许部分ip登录
编辑/etc/hosts.allow文件 vim /etc/hosts.allow sshd:允许登录的ip地址:allow 编辑/etc/hosts.deny文件 vim /etc/hosts.deny sshd:ALL:deny 两个文件编辑完成后重启sshd服务 service sshd re
2024-07-16
20
0
0
Linux
1
2
3
4