Office 2013 / 2016 / 2019 ProPlus Retail零售版密钥上架

Ruckus R310 定时重启python脚本

路由器相关

更新于:

0x00 概述

咋说也算是专业ap啊,也不知道是固件老还是咋的,不带自动重启功能,运行时间长了多卡。

0x01 开整

软件版本:110.0.0.0.683

很简单,主要是好久没更了。

# -*- coding: utf-8 -*-
import requests


def reboot():
    #用户名
    _username = 'root'
    #密码
    _password = 'password'
    #AP地址
    _address = '192.168.1.2'
    s = requests.session()
    _data = {
        'login_username': _username,
        'password': _password,
        'x': 85,
        'y': 16
    }
    s.post('http://{}/forms/doLogin'.format(_address), data=_data)
    s.get('http://{}/status/device.asp'.format(_address))
    s.post('http://{}/forms/rebootFormHandler'.format(_address), data={'action': 'reboot'})
    r = s.get('http://{}/maintenance/reboot_progress.asp'.format(_address))
    if 'Reboot in progress' in r.text:
        return True
    return False


if __name__ == '__main__':
    reboot()

路由器挂一个crontab就可以了

0xff 完结撒花

so easy

转载请注明:【Ruckus R310 定时重启python脚本】https://jihuo.ma/ruckus-310-python-reboot.html

@楼主 昵称
评论