当前位置: 首页>>代码示例>>Python>>正文


Python config.SSHConfig方法代码示例

本文整理汇总了Python中paramiko.config.SSHConfig方法的典型用法代码示例。如果您正苦于以下问题:Python config.SSHConfig方法的具体用法?Python config.SSHConfig怎么用?Python config.SSHConfig使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在paramiko.config的用法示例。


在下文中一共展示了config.SSHConfig方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: parse_ssh_config

# 需要导入模块: from paramiko import config [as 别名]
# 或者: from paramiko.config import SSHConfig [as 别名]
def parse_ssh_config(file_obj):
    """
    Provided only as a backward-compatible wrapper around `.SSHConfig`.
    """
    config = SSHConfig()
    config.parse(file_obj)
    return config 
开发者ID:ohmyadd,项目名称:wetland,代码行数:9,代码来源:util.py

示例2: parse_ssh_config

# 需要导入模块: from paramiko import config [as 别名]
# 或者: from paramiko.config import SSHConfig [as 别名]
def parse_ssh_config(file_obj):
    """
    Provided only as a backward-compatible wrapper around L{SSHConfig}.
    """
    config = SSHConfig()
    config.parse(file_obj)
    return config 
开发者ID:lycclsltt,项目名称:watchmen,代码行数:9,代码来源:util.py

示例3: lookup_ssh_host_config

# 需要导入模块: from paramiko import config [as 别名]
# 或者: from paramiko.config import SSHConfig [as 别名]
def lookup_ssh_host_config(hostname, config):
    """
    Provided only as a backward-compatible wrapper around L{SSHConfig}.
    """
    return config.lookup(hostname) 
开发者ID:lycclsltt,项目名称:watchmen,代码行数:7,代码来源:util.py

示例4: _get_ssh_config

# 需要导入模块: from paramiko import config [as 别名]
# 或者: from paramiko.config import SSHConfig [as 别名]
def _get_ssh_config(key):
    if not _ssh_config:

        ssh_config = SSHConfig()

        path = os.path.expanduser('~/.ssh/config')
        if os.path.exists(path):
            with open(path) as open_file:
                ssh_config.parse(open_file)

        # Create a fake hostname like "dev.myproject.ssha" to allow users to
        # set options in ~/.ssh/config based on the environment and project.
        hostname_parts = (get('config.name'), get('ssha.name'), 'ssha')
        hostname = '.'.join(filter(None, hostname_parts))

        result = ssh_config.lookup(hostname)

        if 'identityfile' not in result:
            result['identityfile'] = [
                '~/.ssh/id_rsa',
                '~/.ssh/id_dsa',
                '~/.ssh/id_ecdsa',
                '~/.ssh/id_ed25519',
            ]

        if 'user' not in result:
            user = os.environ.get('USER')
            if user:
                result['user'] = user

        _ssh_config.update(result)

    return _ssh_config.get(key, []) 
开发者ID:claranet,项目名称:ssha,代码行数:35,代码来源:config.py

示例5: lookup_ssh_host_config

# 需要导入模块: from paramiko import config [as 别名]
# 或者: from paramiko.config import SSHConfig [as 别名]
def lookup_ssh_host_config(hostname, config):
    """
    Provided only as a backward-compatible wrapper around `.SSHConfig`.
    """
    return config.lookup(hostname) 
开发者ID:summerwinter,项目名称:SublimeRemoteGDB,代码行数:7,代码来源:util.py


注:本文中的paramiko.config.SSHConfig方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。