当前位置:   article > 正文

python ddns nginx pass

python ddns nginx pass

家里有公网但是没有ICP

外网socket server

接收家中ip去替换nginx模版内的__ip__文字并重新加载

import socket
import os

# 创建一个TCP socket
server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

# 获取本地机器的IP和端口
local_ip = '0.0.0.0'
local_port = 12345

# 绑定socket到IP和端口
server_socket.bind((local_ip, local_port))

# 设置最大连接数
server_socket.listen(5)

last_remote_ip = ''

try:
    while True:
        client_socket, client_address = server_socket.accept()

        # 获取远程客户端的IP地址
        remote_ip = client_address[0]

        print(f"Connected by {remote_ip}")

        client_socket.close()

        if last_remote_ip != remote_ip:
            os.system('cp -f /root/nginx.template.conf /root/nginx.new.conf')
            command = f'sed -i \'s/__ip__/{remote_ip}/g\' /root/nginx.new.conf'
            print(command);
            os.system(command)
            os.system('cp -f /root/nginx.new.conf /etc/nginx/nginx.conf')
            os.system('service nginx reload')
            last_remote_ip = remote_ip

except KeyboardInterrupt:
    print("Server stopped.")

finally:
    server_socket.close()

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44

家中socket client

import socket

client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

# 服务器的IP和端口
server_ip = 'xxxxxx'  # 服务器的IP地址
server_port = 12345  # 服务器的端口号

try:
    client_socket.connect((server_ip, server_port))
    
    message = b'1'  # 发送的数据
    client_socket.sendall(message)
    
finally:
    client_socket.close()

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

这样就可以检测家中ip如果变化, 则修改nginx文件进行重新加载

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/644458
推荐阅读
相关标签
  

闽ICP备14008679号