-

二:临时配置网络(ip,网关,dns)+永久配置
临时配置:

[root@nfs-server ~]#
ifconfig

ens32:
flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500

inet
192.168.152.134  netmask 255.255.255.0  broadcast 192.168.152.255

inet6
fe80::e33a:cec4:b0d4:c884  prefixlen 64  scopeid 0x20<link>

ether
00:0c:29:f7:dc:59  txqueuelen 1000  (Ethernet)

RX
packets 241828  bytes 275307222 (262.5 MiB)

RX
errors 0  dropped 0  overruns 0  frame 0

TX
packets 7200  bytes 1083100 (1.0 MiB)

TX
errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo:
flags=73<UP,LOOPBACK,RUNNING>  mtu 65536

inet
127.0.0.1  netmask 255.0.0.0

inet6
::1  prefixlen 128  scopeid 0x10<host>

loop 
txqueuelen 1  (Local Loopback)

RX
packets 327  bytes 33260 (32.4 KiB)

RX
errors 0  dropped 0  overruns 0  frame 0

TX
packets 327  bytes 33260 (32.4 KiB)

TX
errors 0  dropped 0 overruns 0  carrier 0  collisions 0

[root@nfs-server ~]#
ifconfig ens32 192.168.152.135

[root@nfs-server ~]# route
-n

Kernel IP routing table

Destination    
Gateway         Genmask       Flags
Metric Ref   Use Iface

192.168.152.0  
0.0.0.0        
255.255.255.0   U    
0      0        0
ens32

[root@nfs-server ~]# route
add default gw 192.168.152.2

[root@nfs-server ~]# route
-n

Kernel IP routing table

Destination    
Gateway         Genmask      
Flags Metric Ref  Use Iface

0.0.0.0        
192.168.152.2  
0.0.0.0         UG   
0      0        0
ens32

192.168.152.0  
0.0.0.0        
255.255.255.0   U    
0      0        0
ens32

[root@nfs-server ~]# cat
/etc/resolv.conf

# Generated by
NetworkManager

search localdomain

nameserver 192.168.152.2

nameserver 202.106.0.20

永久配置:

[root@nfs-server ~]# cat
/etc/sysconfig/network-scripts/ifcfg-ens32

TYPE=Ethernet

BOOTPROTO=dhcp

IPADDR=192.168.152.134

NETMASK=255.255.255.0

GATEWAY=192.168.152.2

DNS1=192.168.152.2

DNS2=202.106.0.20

DEFROUTE=yes

PEERDNS=yes

PEERROUTES=yes

IPV4_FAILURE_FATAL=no

IPV6INIT=yes

IPV6_AUTOCONF=yes

IPV6_DEFROUTE=yes

IPV6_PEERDNS=yes

IPV6_PEERROUTES=yes

IPV6_FAILURE_FATAL=no

IPV6_ADDR_GEN_MODE=stable-privacy

NAME=ens32

UUID=9eff3909-2614-4df9-80c9-a6a7d9f1be28

DEVICE=ens32

ONBOOT=yes

[root@nfs-server ~]#
systemctl restart network

三:为集群内的机器设定主机名,利用/etc/hosts文件来解析自己的集群中所有的主机名,相应的,集群的配置应该改成使用主机名的方式

修改主机名:
hostname python_web1
cat /etc/hostname 
python_web1
修改host文件:
[root@python_web1 ~]# cat /etc/hosts 
192.168.2.3 python_web1
[root@python_web1 ~]# ping python_web1

四:ssh登录,scp上传、下载,ssh秘钥登录,修改ssh
server端的端口为8888然后进行登录和scp测试
SSH登录:

[root@proxy-nfs ~]# scp
/etc/hosts web01:/tmp

The authenticity of
host 'web01 (192.168.152.135)' can't be established.

ECDSA key
fingerprint is 4c:ee:a3:f1:5c:37:43:32:bd:06:4e:cc:3f:5a:0a:04.

Are you sure you want
to continue connecting (yes/no)? yes

Warning: Permanently
added 'web01,192.168.152.135' (ECDSA) to the list of known hosts.

root@web01's password:

hosts                                                                    
100%  274     0.3KB/s  
00:00

[root@proxy-nfs ~]# scp
web01:/tmp/hosts .

root@web01's password:

hosts                                                                    
100%  274     0.3KB/s  
00:00

[root@proxy-nfs ~]# ls -l
hosts

-rw-r--r-- 1 root root 274
Mar 21 15:05 hosts

秘钥登录:

[root@proxy-nfs ~]#
ssh-keygen

Generating public/private rsa
key pair.

Enter
file in which to save the key (/root/.ssh/id_rsa):

Enter passphrase
(empty for no passphrase):

Enter same passphrase
again:

Your identification has
been saved in /root/.ssh/id_rsa.

Your public key
has been saved in /root/.ssh/id_rsa.pub.

The key
fingerprint is:

29:90:f7:3a:24:0a:e2:f9:22:ec:f4:07:75:7c:10:6b
root@proxy-nfs

The key's randomart
image is:

+--[ RSA 2048]----+

|      
..        |

|     .
..        |

|    o
oE.        |

|    
+.+ o       |

|o   o +
S        |

|o..o o
o         |

|.+. .
o          |

|ooo  .
.         |

|o..o.           
|

+-----------------+

[root@proxy-nfs ~]#
ssh-copy-id -i web01

/usr/bin/ssh-copy-id: INFO:
attempting to log in with the new key(s), to
filter out any that are already installed

/usr/bin/ssh-copy-id: INFO:
1 key(s) remain to be installed -- if you are prompted now
it is to install the new keys

root@web01's password:

Number of key(s) added: 1

Now try logging into the
machine, with:   "ssh 'web01'"

and check to make sure that
only the key(s) you wanted were added.

[root@proxy-nfs ~]#

[root@proxy-nfs ~]#
ssh-copy-id -i web02

The authenticity of
host 'web02 (192.168.152.136)' can't be established.

ECDSA key
fingerprint is 4c:ee:a3:f1:5c:37:43:32:bd:06:4e:cc:3f:5a:0a:04.

Are you sure you want to continue connecting
(yes/no)? yes

/usr/bin/ssh-copy-id: INFO:
attempting to log in with the new key(s), to
filter out any that are already installed

/usr/bin/ssh-copy-id: INFO:
1 key(s) remain to be installed -- if you are prompted now
it is to install the new keys

root@web02's password:

Number of key(s) added: 1

Now try logging into the
machine, with:   "ssh 'web02'"

and check to make sure that
only the key(s) you wanted were added.

[root@proxy-nfs ~]#
ssh-copy-id -i web03

The authenticity of host 'web03
(192.168.152.137)' can't be established.

ECDSA key
fingerprint is 4c:ee:a3:f1:5c:37:43:32:bd:06:4e:cc:3f:5a:0a:04.

Are you sure you want
to continue connecting (yes/no)? yes

/usr/bin/ssh-copy-id: INFO:
attempting to log in with the new key(s), to
filter out any that are already installed

/usr/bin/ssh-copy-id: INFO:
1 key(s) remain to be installed -- if you are prompted now
it is to install the new keys

root@web03's password:

Number of key(s) added: 1

Now try logging into the
machine, with:   "ssh 'web03'"

and check to make sure that
only the key(s) you wanted were added.

# 修改SSH端口

[root@proxy-nfs ~]# ssh
web01

Last login: Tue Mar 21
15:08:30 2017 from proxy-nfs

[root@web01 ~]# sed -i
s'/^#Port 22/Port 8888/g' /etc/ssh/sshd_config

[root@web01 ~]# grep 8888
/etc/ssh/sshd_config

Port 8888

[root@web01 ~]# exit

logout

Connection to web01 closed.

[root@proxy-nfs ~]# ssh
web02

Last login: Tue Mar 21
14:53:19 2017 from 192.168.152.1

[root@web02 ~]# sed -i
s'/^#Port 22/Port 8888/g' /etc/ssh/sshd_config

[root@web02 ~]# grep 8888
/etc/ssh/sshd_config

Port 8888

[root@web02 ~]# exit

logout

Connection to web02 closed.

[root@proxy-nfs ~]# ssh
web03

Last login: Tue Mar 21
14:53:20 2017 from 192.168.152.1

[root@web03 ~]# sed -i
s'/^#Port 22/Port 8888/g' /etc/ssh/sshd_config

[root@web03 ~]# grep 8888
/etc/ssh/sshd_config

Port 8888

[root@web03 ~]# exit

logout

Connection to web03 closed.

[root@proxy-nfs ~]#

# SCP 远程拷贝文件

[root@proxy-nfs ~]# touch
oldgirl.txt

[root@proxy-nfs ~]# scp
oldgirl.txt web01:/tmp

oldgirl.txt                                                                                                                         
100%    0     0.0KB/s  
00:00

[root@proxy-nfs ~]# scp
web01:/etc/passwd .

passwd                                                                                                                              
100% 2375     2.3KB/s   00:00

五:整理bash命令类型,验证寻找一个命令的优先级

# 以ls命令为例

命令分为:

==> alias
  ==> Compound Commands
    ==> function 
      ==> build_in
        ==> hash
          ==> $PATH
            ==> error: command not found

获取一个命令会按照上述优先级取寻找,先找同名的alias命令,再找compound命令。。。

 

linux---网络相关配置,ssh服务,bash命令及优先级,元字符的更多相关文章

  1. Linux网络相关配置

    一.修改网卡相关配置 Linux网络参数是在/etc/sysconfig/network-scripts/ifcfg-eth0中设置,其中ifcfg-eth0表示是第一个网卡,如果还有另外一块网卡,则 ...

  2. Linux网络属性配置命令和管理详解

    一.Linux网络属性配置 1.Linux主机接入到网络方式 IP/NETMASK:实现本地网络通信 路由(网关):可以进行跨网络通信 DNS服务器地址:基于主机名的通信,Linux可以有三个DNS地 ...

  3. Linux下安装并配置SSH服务

    一.使用命令检测Linux系统上是否已经安装了SSH服务:(命令:rpm -qa |grep ssh) 二.如果没有安装SSH软件包,可以通过yum 或rpm安装包进行安装(命令:yum instal ...

  4. Linux 网络相关命令 Cheat Sheet

    以下漫画形式呈现的常用 Linux 网络相关命令速查表来自 twitter -

  5. 10.11 Linux网络相关 10.12 firewalld和netfilter 10.13 netfilter5表5链介绍 10.14 iptables语法

    Linux网络相关 ifocnfig 查看网卡ip(yum install net-tools) ip add 查看网卡 ip add = ifocnfig ifconfig 不显示down掉的网卡, ...

  6. Linux网络基础配置

    这是看itercast视频的笔记 Linux网络基础配置 以太网连接 在Linux中,以太网接口被命令为:eth0, eth1等, 0,1代表网卡编号 通过lspci命令可以查看网上硬件信息(如果是u ...

  7. Linux入门-6 Linux网络基本配置

    1. 网络基础知识 网络编址 IP编址 子网掩码 同一网络主机之间通信--MAC地址 不同网络之间的通信 路由 域名 DNS 基本网络参数 2. Linux网络基础配置 以太网连接 配置网络信息 网络 ...

  8. Linux网络相关、firewalld和netfilter、netfilter5表5链介绍、iptables语法 使用介绍

    第7周第3次课(5月9日) 课程内容: 10.11 Linux网络相关10.12 firewalld和netfilter10.13 netfilter5表5链介绍10.14 iptables语法 扩展 ...

  9. CentOS7系列--2.2CentOS7中配置SSH服务

    CentOS7配置SSH服务 1. SSH配置 1.1. 使用SSH服务更加安全 [root@centos7 ~]# vi /etc/ssh/sshd_config 设置如下 PermitRootLo ...

  10. Linux centos7 Linux网络相关、firewalld和netfilter、netfilter5表5链介绍、iptables语法

    一. Linux网络相关 yum install net-tools ifconfig查看网卡ip ifup ens33开启网卡 ifdown ens33关闭网卡 设定虚拟网卡ens33:0 mii- ...

随机推荐

  1. PHP实现excel导出

    首先去下载PHPExcel类,地址http://phpexcel.codeplex.com/ 方法如下第一步引入这个扩展类 Vendor('PHPExcel'); 第二部就是方法了,下面简单的实现方法 ...

  2. Linux系统——最小化安装

    一.虚拟机进行Linux minimal 安装 网络连接:选择“自定义”——>VMnet8(NAT模式) #PC与NAT网络的虚拟机在不同网段,此时虚拟网卡作为网关建立通信 NAT模式可直接上I ...

  3. Git-创建和合并分支

    本人拜读了廖雪峰老师关于Git的讲述后整理所得 分支就是科幻电影里面的平行宇宙,当你正在电脑前努力学习Git的时候,另一个你正在另一个平行宇宙里努力学习SVN. 如果两个平行宇宙互不干扰,那对现在的你 ...

  4. 中线,基线,垂直居中vertical-align:middle的一些理解

    基线:小写字母xxxxx的下边缘线就是我们的css基线:一般的行内元素都是vertical-align: baseline;默认设置: x-height:就是指小写字母xxxx的高度,下边缘线到上边缘 ...

  5. 关于http响应状态码

    http状态返回代码 1xx(临时响应) 表示临时响应并需要请求者继续执行操作的状态代码. http状态返回代码 代码   说明 100   (继续) 请求者应当继续提出请求. 服务器返回此代码表示已 ...

  6. python os模块一些常用操作

    os.getcwd() ## 获取当前路径 os.chdir("dirpath") ## 改变目录 os.makedirs("dirname") ## 递归创建 ...

  7. 【Linux学习】2.Linux常见命令行

    记录学习Linux 系统的相关知识点,欢迎大家拍砖交流,一起成长:QQ:2712192471 作者背景:前端开发工程师 | Python | web安全爱好者   Linux命令行: 系统关机重启 s ...

  8. C语言基础温故

    一.C语言中数组动态增长有哪些方法? 1.在原数组单元后面是没法再扩长的,因为后面的单元没法保证一定有.所以,数组原址动态增长肯定是不行的: 2.要么定义长一点的数组,要么自已把N个数组用链表串起来, ...

  9. GRUB2 分析 (三)

    接上一篇 从地址0x8200开始的是lzma_decompress.img.这是由startup_raw.S编译生成的.这个文件稍微复杂点.首先一开始就是个跳转指令: ljmp $0, $ABS(LO ...

  10. WCF基本知识

    1.开通WCF调试服务: 须在服务端的行为中作如下配置:includeExceptionDetailInFaults="true" 代码如下: <behaviors> ...