Using Python to automatically modify native gateway code sharing under Linux

Source: Internet
Author: User
Tags rand

This article mainly introduces the Linux use Python to automatically modify the native gateway code sharing, this article directly gives the implementation code, the need for friends can refer to the following

?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20-21 #!/usr/bin/python #auto Change Gateway Created by Mickelfeng import os import random,re g= ' Gateway 192.168.1. ' Rand=random . Randint (1,3) test= ' www.baidu.com ' command= '/etc/init.d/networking restart ' GW = '%s%d '% (g,rand) pingtest = ' Ping-c 3 ' + Test Try:result=os.system (pingtest) Print result if Result!=0:data = open ('/etc/network/interfaces '). Read () data = RE.S UB (' Gateway 192.168.1.* ', GW, data) open ('/etc/network/interfaces ', ' WB '). Write (data) os.system (command) Os.system ( command) Except:pass
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.