Shell Script--Determine if the IP entered is correct

Source: Internet
Author: User

#!/bin/bash

#It ' s written by Caibingsen

#!/bin/bash

#It ' s written by Caibingsen

#date: 2016-03-15


#while设置成死循环, re-enter when the IP entered does not meet the criteria

While:

Do

Read-p "Please enter the IP address to be judged:" IP

#判断输入的ip地址是否仅由数字和点组成, and assigns the value to M.

#判断输入的ip地址的小数点的个数, copy to n

M= ' echo $ip |sed ' s/[0-9. G '

N= ' echo $ip |sed ' s/[0-9]//g ' |wc-c '

#截取ip地址的四个数字的部分, and copy them separately.

N1= ' echo $ip |cut-d '. '-f1 '

N2= ' echo $ip |cut-d '. '-f2 '

N3= ' echo $ip |cut-d '. '-f3 '

N4= ' echo $ip |cut-d '. '-f4 '

#第一个if通过m和n来判断输入的ip是否符合要求

If [-Z $m] && [$n-eq 4] && [-n $n 1] && [-n $n 2] && [-n $n 3] && [-N $n 4 ];then

#第二个if通过n1到n4来判断输入的范围是否符合要求.

If [$n 1-ge 0] && [$n 1-le 255] && [$n 2-ge 0] && [$n 2-le 255] && [$n 3-ge 0] & amp;& [$n 3-le 255] && [$n 4-ge 0] && [$n 4-le 255]

Then

echo "IP Right"

Exit

Else

echo "The IP error you entered, please re-enter"

Fi

Else

echo "The IP error you entered, please re-enter"

Fi

Done


Shell Script--Determine if the IP entered is correct

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.