Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1808987
  • 博文数量: 636
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 3950
  • 用 户 组: 普通用户
  • 注册时间: 2014-08-06 21:58
个人简介

博客是我工作的好帮手,遇到困难就来博客找资料

文章分类

全部博文(636)

文章存档

2024年(5)

2022年(2)

2021年(4)

2020年(40)

2019年(4)

2018年(78)

2017年(213)

2016年(41)

2015年(183)

2014年(66)

我的朋友

分类: 系统运维

2017-10-23 12:03:22

#!/usr/bin/python

import os
import re


hosts = open('/home/haoren/serverlist.ini')
for line in hosts:
    if re.search('=',line):
        ip = line.split('=')[1].strip() 
        hostname = os.popen('ssh %s hostname' % ip).readline().strip()
        print "%s:%s" % (hostname,ip)
hosts.close() 



==============================================

#!/bin/sh
#增大UDP缓冲区


echo "" >> /etc/sysctl.conf
echo "# Add UDP BUF" >> /etc/sysctl.conf
echo "net.core.rmem_default=262144" >> /etc/sysctl.conf
echo "net.core.wmem_default=262144" >> /etc/sysctl.conf
echo "net.core.rmem_max=4194304" >> /etc/sysctl.conf
echo "net.core.wmem_max=4194304" >> /etc/sysctl.conf


/sbin/sysctl -p

阅读(829) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~