25
2019
10
su;su -;sudo;sudo -i;sudo su;sudo su - 之间的区别
su 切换到root用户,但是并没有转到root用户家目录下,即没有改变用户的环境。su - 切换到root用户,并转到root用户的家目录下,即改变到了root用户的环境。这个涉及到不同用户下的环境变量的配置。 sudo通过sudo,我们能把某些超级权限有针对性的下放,并且不需要普通用户知道root密码(sudo用的不是root密码,而是当前用户密码),所以sudo相对于权限无限制性的su来说,还是比较安全的,所以sudo也能被称为受限制的su,另外sudo是需要授权许可的,所以也被
作者:hqy | 分类:技术文章 | 浏览:3044 | 评论:0
25
2019
10
Using StrongSwan for IPSec VPN on CentOS 7
https://www.vultr.com/docs/using-strongswan-for-ipsec-vpn-on-centos-7StrongSwan is an open source IPsec-based VPN Solution. It supports both the IKEv1 and IKEv2 key exchange protocols in conjunction with the native NETKEY IPsec stack of the Linux ker
作者:hqy | 分类:技术文章 | 浏览:2484 | 评论:0
25
2019
10
IPSEC VPN on Centos 7 with StrongSwan
https://raymii.org/s/tutorials/IPSEC_vpn_with_CentOS_7.htmlTable of ContentsWhy a VPN?Version History:No L2TP?OverviewInstall EPEL 7:Install StrongswanCertificatesClient certificateIPSEC ConfigurationVPN user accounts and secretsFirewall & Packet
作者:hqy | 分类:技术文章 | 浏览:3372 | 评论:0
25
2019
10
How to Setup IKEv2 VPN Using Strongswan and Let's encrypt on CentOS 7
https://www.howtoforge.com/tutorial/how-to-setup-ikev2-vpn-using-strongswan-and-letsencrypt-on-centos-7/Strongswan is an open source multiplatform IPSec implementation. It's an IPSec-based VPN solution that focuses on strong authentication mechan
作者:hqy | 分类:技术文章 | 浏览:3006 | 评论:0
25
2019
10
腾讯云CentOS服务器安装StrongSwan与Juniper防火墙搭建Ipsecvpn
StrongSwan简介它也完全支持新的IKEv2协议的Linux 2.6内核。结合IKEv1和IKEv2模式与大多数其他基于IPSec的×××产品。重点项目是strongSwan强认证机制,使用X.509公 开密钥证书和可选的安全储存私钥对智能卡通过一个标准化的PKCS # 11接口。一个特点是使用的X.509属性证书实现了先进的访问控制方案的基础上组的成员配置目的:实现线下IDC与腾讯云内网打通,腾讯云端未购买(×××网关、云市场第三方×××产品等等)site-to-site上菜:****本
作者:hqy | 分类:技术文章 | 浏览:3225 | 评论:0
25
2019
10
CentOS搭建Strongswan
本文链接:https://blog.csdn.net/liyaxin2010/article/details/83148564假设你的服务器公网ip是99.99.99.99 , 下文中出现的指令中的“你的服务器公网ip”替换成99.99.99.991、安装strongswanyum install strongswan 2、创建证书strongswan pki --gen --outform pem > ca.key.pemstrongswan pki --self --in c
作者:hqy | 分类:技术文章 | 浏览:3385 | 评论:0
25
2019
10
翻译:使用带strongSwan的L2TP,即使是OpenVZ
翻译:使用带strongSwan的L2TP,即使是OpenVZ Beining 2015 年 2 月 24 日 3 Commentson 翻译:使用带strongSwan的L2TP,即使是OpenVZ译者注:希望你看英文不晕,否则请关掉吧。yep, pretty strong swan如果你想找一个全平台制霸,连路由器都不用刷的VPN,那基本上就是PPTP和L2TP+IPsec这两个中选了。因为
作者:hqy | 分类:技术文章 | 浏览:2947 | 评论:0
25
2019
10
Linux 系统版本查询命令
Linux 系统版本查询命令1、# uname -a (Linux查看版本当前操作系统内核信息)
2、# cat /proc/version (Linux查看当前操作系统版本信息)
3、# cat /etc/issue 或 cat /etc/redhat-release (Linux查看版本当前操作系统发行版信息)
4、# cat /proc/cpui
作者:hqy | 分类:技术文章 | 浏览:3410 | 评论:0
25
2019
10
Linux中“is not in the sudoers file”解决方法
Linux中“is not in the sudoers file”解决方法当在终端执行sudo命令时,系统提示“hadoop is not in the sudoers file”:其实就是没有权限进行sudo,解决方法如下(这里假设用户名是hqy):1.切换到超级用户:$ su2.打开/etc/sudoers文件:$vim /etc/sudoers3.修改文件内容:找到“root ALL=(ALL)  
作者:hqy | 分类:技术文章 | 浏览:2892 | 评论:0