IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> ubuntu18.04初始化script(python3+shell) -> 正文阅读

[系统运维]ubuntu18.04初始化script(python3+shell)

#!/bin/bash
# ubuntu18.04初始化配置


#判断用户执行
if [ $UID != "0" ];then
	echo "请使用root用户运行"
	exit 1
fi

hostnamectl set-hostname 041840636zwt


# 配置apt源
mv /etc/apt/source.list /etc/apt/source.list.bak
touch /etc/apt/source.list
cat>>/etc/apt/source.list<<EOF
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
EOF
apt update # 这条命令只检查可更新的组件包,不会进行更新
apt upgrade -y


# ssh优化配置
apt install openssh-server -y
sed -i "s|^#UseDNS no|UseDNS no|g" /etc/ssh/sshd_config
sed -i "s|^#GSSAPIAuthentication no|GSSAPIAuthentication no|g" /etc/ssh/sshd_config
sed -i "s|^#PermitRootLogin prohibit-password|PermitRootLogin yes|g" /etc/ssh/sshd_config
sed -i "s|^#Port 22|Port 2021|g" /etc/ssh/sshd_config

systemctl restart sshd


# 添加常用命令别名和变量
cat>>/root/.bashrc<<EOF
alias rnet='/etc/init.d/networking restart'
alias res='systemctl restart'
alias start='systemctl start'
alias status='systemctl status'
NET='/etc/sysconfig/network-scripts'
EOF
source /root/.bashrc





pip3 install pyyaml netifaces

# 编写python脚本,配置网络
touch config_net.py
cat>>config_net.py<<EOF
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
import re


def get_interfaces() -> list:
    interface_list = []
    with open('/proc/net/dev') as f:
        net_file = f.readlines()
    for line in net_file[2:]:
        interface = line[0:line.index(':')].strip()
        if interface != 'lo':
            interface_list.append(interface)
    return interface_list


def netmask_2_int(netmask: str) -> int:
    str_list = netmask.split('.')
    one_count = 0
    for str in str_list:
        bin_str = bin(int(str))[2:]
        one_count += bin_str.count('1')
    return one_count


if __name__ == '__main__':
    net_file = open('/etc/netplan/01-network-manager-all.yaml', mode='a')
    net_file.write('\n  ethernets:\n')
    for interface in get_interfaces():
        print('=' * 50)
        print(f'\t\tconfigure interface {interface}')
        print('=' * 50)
        ip_reg = r'[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+'
        ip_group_reg = r'([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)'
        reg = re.compile(ip_group_reg)
        while True:
            address = input('please enter your ip address:\n')
            if re.match(ip_reg, address):
                matcher = reg.match(address)
                for i in range(1, 5):
                    if int(matcher.group(i)) >= 255:
                        print('ERROR:please enter the right address')
                        continue
                break

        while True:
            netmask = input(f'please enter your netmask(255.255.255.0):\n')
            if netmask == '':
                netmask = '255.255.255.0'
                break
            bin_mask = ''
            if re.match(ip_reg, netmask):
                matcher = reg.match(netmask)
                for i in range(1, 5):
                    if int(matcher.group(i)) > 255:
                        print('ERROR:please enter the right netmask')
                        continue
                    bin_num = bin(int(matcher.group(i)))[2:]
                    bin_mask += bin_num
            if not re.match('1+0+', bin_mask):
                print('ERROR:the netmask is not recommended')
                break

        while True:
            gateway = input(f'please enter your gateway:\n')
            if re.match(ip_reg, gateway):
                matcher = reg.match(gateway)
                for i in range(1, 5):
                    if int(matcher.group(i)) >= 255:
                        print('ERROR:please enter the right gateway')
                        continue
                break

        while True:
            dns = input(f'please enter your DNS({gateway}):\n')
            if dns == '':
                dns = gateway
                break
            if re.match(ip_reg, dns):
                matcher = reg.match(dns)
                for i in range(1, 5):
                    if int(matcher.group(i)) >= 255:
                        print('ERROR:please enter the right DNS')
                        continue
                break

        content = f'''
            {interface}:
              dhcp4: no
              dhcp6: no
              addresses: [{address}/{netmask_2_int(netmask)}]
              gateway4: {gateway}
              nameservers:
                addresses: [{dns}]\n
        '''
        net_file.write(content)
        net_file.close()
    if os.system('netplan apply') == 0:
        print("\033[1;32m interface configure succeed\033[0m")
    else:
        print("\033[1;31m interface configure failed\033[0m")

EOF

python3 config_net.py
  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2021-10-19 12:18:43  更:2021-10-19 12:19:48 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 20:10:56-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码