0

DNSにリストされていないサーバーに接続しようとしています.IPを持つサーバーだけです。

このコードを使用してもうまくいきません:

netpath = r'\\10.5.1.22\Products'
    networkPath = netpath
    unc = ''.join(['\\\\', host])
    print unc
    try:
            win32wnet.WNetAddConnection2(0, None, unc, None, username, password)
    except Exception, err:
        if isinstance(err, win32wnet.error):
            #Disconnect previous connections if detected, and reconnect.
            if err[0] == 1219:
                win32wnet.WNetCancelConnection2(unc, 0, 0)
                return wnet_connect(host, username, password)
        raise err

この状況で接続するためのより良い方法はありますか?私は Python 2.7 を使用しています

4

1 に答える 1

0

DNS にない場合、サーバーまたは任意のマシンに接続することはできません。

于 2013-10-03T11:36:51.193 に答える