当前位置:网站首页>Dhcp-master Automated Deployment
Dhcp-master Automated Deployment
2022-07-16 06:28:00 【51CTO】
#!/bin/bash
for ((i=1;i>=0;i++))
do
read -p " Please enter the corresponding option :1、 Adjust the network card 2、 download dhcp Service and modify dhcp Master profile 3、 Add client related information 4、 Restart the service 0、 sign out " aa
case $aa in
1)
echo " Adjust the network card :"
. dhcp.sh
network
;;
2)
echo " download dhcp Service and modify dhcp Master profile "
. dhcp.sh
dhcp_download
;;
3)
echo " Add client related information "
. dhcp.sh
client
;;
4)
echo " Add client related information "
. dhcp.sh
restart_server
;;
0)
echo " sign out "
break
;;
*)
echo " There is no such item ~"
;;
esac
done
边栏推荐
- 【PCB】關於電賽——硬件設計和PCB繪制的一些心得(持續更新)
- ##DHCP-MASTER自动化部署
- 含可变长参数的函数的使用(C语言<stdarg.h>)
- GAN:Generative Adversarial Nets——论文分析及其背后的数学概念
- c语言 字符串的系列操作(字符串的逆序输出、字符串类型与int、double的互相转换)
- [paper notes] - conditional motion propagation - self supervised - CMP optical flow prediction - 2019-cvpr
- RT_thread生产者与消费者问题
- RT_thread信号量的使用
- 基于RT_thread的分布式无线温度监控系统
- 【论文笔记】—低照度图像增强—ZeroShot—RRDNet网络—2020-ICME
猜你喜欢

RT_thread 事件集的使用

表格图像提取-基于传统交点方法和Tesseract-OCR

【论文笔记】—低照度图像增强—ZeroShot—RetinexDIP网络—2021-TCSVT

RTtread-动态内存分配

stride for plane for YUV

Evo-ViT: Slow-Fast Token Evolution for Dynamic Vision Transformer

【代码笔记】RRDNet 网络

Alibaba cloud centos7 installation and remote link MySQL

卷积神经网络中的激活函数sigmoid、tanh、relu

RT_thread空闲线程及两个常用的钩子函数
随机推荐
【Multisim】关于Multisim仿真“运放积分器”出现的问题以及解决方法
stm32f429+LAN4720A+lwip 问题记录及解决
supervisor系列:5、日志
C语言动态内存分配原理以及堆区的使用(malloc、calloc、realloc、free)
_ button. Enable=no does not work
Customize breadcrumb navigation
[paper notes] - millimeter wave radar fog penetrating high resolution imaging - supervised Hawkeye system - 2020-cvpr
【论文笔记】—VGG网络—2014-ICLR
【信号调理】精密检波电路和PCB示例
HDU 2874 Connections between cities (并查集+lca倍增法)
关于Coursera
如何将会员消费能力分类?
【Verilog】子模块连接相关问题(加法器及其优化)
HDU 3666 THE MATRIX PROBLEM (差分约束+栈优化spfa判负环)
小程序导入项目
Cgrect, cgpoint, etc. cannot be added to the array problem
[paper notes] - alexnet - 2012-acm
POJ 3417 Network (lca+树上差分)
Catching Both Gray and Black Swans: Open-set Supervised Anomaly Detection(捕捉灰天鹅和黑天鹅:开放集监督异常检测)
[paper notes] - googlenet (inception-v1) - 2015-cvpr