Linux练习10

第十周
1、Ubuntu系统网络配置总结(包括主机名、网卡名称、网卡配置)

#修改主机名
wang@ubuntu:~$ hostnamectl set-hostname ubuntu1804.magedu.org
wang@ubuntu:~$ hostname
ubuntu.bear.test
wang@ubuntu:~$ cat /etc/hostname
ubuntu.bear.test
#修改网卡名称
wang@ubuntu:~$ ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: ens33: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 00:0c:29:3b:e2:82 brd ff:ff:ff:ff:ff:ff
    inet 10.0.0.204/24 brd 10.0.0.255 scope global dynamic ens33
       valid_lft 1333sec preferred_lft 1333sec
    inet6 fe80::20c:29ff:fe3b:e282/64 scope link 
       valid_lft forever preferred_lft forever
wang@ubuntu:~$ sudo -i
[sudo] password for wang: 
root@ubuntu:~#vim /etc/default/grub
##修改GRUB_CMDLINE_LINUX="net.ifnames=0"

#生效新的grub.cfg文件
root@ubuntu:~# grub-mkconfig -o /boot/grub/grub.config
Sourcing file `/etc/default/grub'
Sourcing file `/etc/default/grub.d/init-select.cfg'
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-5.3.0-18-generic
Found initrd image: /boot/initrd.img-5.3.0-18-generic
done
#重启生效
root@ubuntu:~# reboot

#配置网卡自动获取IP
wang@ubuntu:~$ cat /etc/netplan/01-netcfg.yaml
# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
  version: 2
  renderer: networkd
  ethernets:
    eth0:
      dhcp4: yes
修改网卡配置文件后需执行命令生效:
root@ubuntu1804:~#netplan apply
#配置网卡实现静态IP
root@ubuntu:/etc/netplan# cat 01-netcfg.yaml 
# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
  version: 2
  renderer: networkd
  ethernets:
    eth0:
      addresses:
        - 10.0.0.204/24
        - 192.168.101.100/24      
      gateway4: 192.168.101.9
      nameservers: 
        search: [bear.test, bear.org]
        addresses: [180.76.76.76, 8.8.8.8, 1.1.1.1]
#查看路由
root@ubuntu:/etc/netplan# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.101.9   0.0.0.0         UG    0      0        0 eth0
10.0.0.0        0.0.0.0         255.255.255.0   U     0      0        0 eth0
192.168.101.0   0.0.0.0         255.255.255.0   U     0      0        0 eth0

#查看DNS
root@ubuntu:/etc/netplan# systemd-resolve --status
Global
       LLMNR setting: no
MulticastDNS setting: no
  DNSOverTLS setting: no
      DNSSEC setting: no
    DNSSEC supported: no
          DNSSEC NTA: 10.in-addr.arpa
                      16.172.in-addr.arpa
                      168.192.in-addr.arpa
                      17.172.in-addr.arpa
                      18.172.in-addr.arpa
                      19.172.in-addr.arpa
                      20.172.in-addr.arpa
                      21.172.in-addr.arpa
                      22.172.in-addr.arpa
                      23.172.in-addr.arpa
                      24.172.in-addr.arpa
                      25.172.in-addr.arpa
                      26.172.in-addr.arpa
                      27.172.in-addr.arpa
                      28.172.in-addr.arpa
                      29.172.in-addr.arpa
                      30.172.in-addr.arpa
                      31.172.in-addr.arpa
                      corp
                      d.f.ip6.arpa
                      home
                      internal
                      intranet
                      lan
                      local
                      private
                      test

Link 2 (eth0)
      Current Scopes: DNS
DefaultRoute setting: yes
       LLMNR setting: yes
MulticastDNS setting: no
  DNSOverTLS setting: no
      DNSSEC setting: no
    DNSSEC supported: no
         DNS Servers: 180.76.76.76
                      8.8.8.8
                      1.1.1.1
          DNS Domain: bear.test
                      bear.org

2、编写脚本实现登陆远程主机。(使用expect和shell脚本两种形式)。

# expect 脚本
[02:16:35 root@bear data]#vim expectssh

#!/usr/bin/expect
set ip [lindex $argv 0]                                                                                                     
set user [lindex $argv 1]
set password [lindex $argv 2]
spawn ssh $user@$ip
expect {
"yes/no" { send "yes\n";exp_continue }
"password" { send "$password\n" }
}
interact
~       
[02:29:02 root@bear data]#chmod +x expectssh
[02:29:14 root@bear data]#./expectssh 10.0.0.219 root welcome1
spawn ssh root@10.0.0.219
root@10.0.0.219's password: 
Last login: Sat Feb 13 18:26:12 2021 from 10.0.0.1
[18:29:32 root@centos7 ~]#whoami
root
[18:29:46 root@centos7 ~]#hostname -I
10.0.0.219 10.0.0.207 192.168.122.1

#Shell 脚本
[02:37:03 root@bear data]#vim expectshe.sh
#!/bin/bash
#
#********************************************************************
#Author:        stella tang
#Mail:          359564666@126.com
#Date:          2021-02-14
#FileName:      expectshe.sh
#URL:           https://jianshu.com
#Description:       The test script
#Copyright (C):     2021 All rights reserved
#********************************************************************
ip=$1
user=$2
password=$3
expect <<EOF
set timeout 20
spawn ssh $user@$ip
expect {
"yes/no" { send "yes\n";exp_continue }
"password" { send "$password\n" }
}
expect eof
EOF



[02:36:28 root@bear data]#bash expectshe.sh 10.0.0.219 root welcome1
spawn ssh root@10.0.0.219
root@10.0.0.219's password: 
Last login: Sat Feb 13 18:29:32 2021 from 10.0.0.222
[18:36:49 root@centos7 ~]#

3、生成10个随机数保存于数组中,并找出其最大值和最小值

[02:41:47 root@bear data]#cat max-min.sh 
#!/bin/bash
#
#********************************************************************
#Author:        stella tang
#Mail:          359564666@126.com
#Date:          2021-02-14
#FileName:      max-min.sh
#URL:           https://jianshu.com
#Description:       The test script
#Copyright (C):     2021 All rights reserved
#********************************************************************
declare -i min max
declare -a nums
for ((i=0;i<10;i++));do
nums[$i]=$RANDOM
[ $i -eq 0 ] && min=${nums[0]} && max=${nums[0]}&& continue
[ ${nums[$i]} -gt $max ] && max=${nums[$i]}
[ ${nums[$i]} -lt $min ] && min=${nums[$i]}
done
echo "All numbers are ${nums[*]}"
echo Max is $max
echo Min is $min

[02:41:35 root@bear data]#bash max-min.sh 
All numbers are 16221 2135 6403 17330 5695 15218 15308 28964 5600 18018
Max is 28964
Min is 2135

4、输入若干个数值存入数组中,采用冒泡算法进行升序或降序排序
暂时不做

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,258评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,335评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,225评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,126评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,140评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,098评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,018评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,857评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,298评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,518评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,400评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,993评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,638评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,661评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352

推荐阅读更多精彩内容

  • 1、Ubuntu系统网络配置总结(包括主机名、网卡名称、网卡配置) 主机名:root@template-ubunt...
    antikor阅读 203评论 1 0
  • 1、Ubuntu系统网络配置总结(包括主机名、网卡名称、网卡配置) 主机名修改 网卡名称的修改 网卡的配置 2、编...
    沐熙一叶_Leaf阅读 1,310评论 1 0
  • 1、Ubuntu系统网络配置 1.1网卡名称的改变 1.2主机名称的更改 1.3IP地址的配置 2、编写脚本实现登...
    196_fendou阅读 230评论 2 0
  • 1、Ubuntu系统网络配置总结(包括主机名、网卡名称、网卡配置) 2、编写脚本实现登陆远程主机。(使用expec...
    Easy_8195阅读 300评论 1 0
  • 1、Ubuntu系统网络配置总结(包括主机名、网卡名称、网卡配置) 2、编写脚本实现登陆远程主机。(使用expec...
    紫火红云阅读 316评论 1 0