由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - 请问怎么获取pptp拨号后的子网?
相关主题
网络设置问题Re: 有没有什么网络函数能够 (转载)
linux routing table question from dummywon't take the eth0 config from /etc/network/interaces
is this legal: can still ping eth1 through eth0, even if eth1 cable is unpluggedunplug the network cable, ifconfig still says up
这边高手多,问个简单网络问题shall i call system("ifconfig eth0 ... up") or write my own (转载)
求助:ubuntu9.04 无线wpa上网失败move cable from eth1 to eth0, but cannot ping eth0
求助:ubuntu上不了网(非无线)VM中routing table消失的问题
How to change pc wireless mac address under Ubuntu system?CentOS (Linux)开机时不插网线的问题
Linux下什么命令能知道哪个网卡插了线了?能否建立一个虚拟网卡并监听端口?
相关话题的讨论汇总
话题: 子网话题: ppp0话题: pptp话题: 获取话题: 拨号
进入Linux版参与讨论
1 (共1页)
a9
发帖数: 21638
1
我想拨号后,加一条获取到ip地址的子网的路由,这个应该怎么做呢?
j*a
发帖数: 14423
2
ip ro add 1.2.3.4/32 dev tun0

【在 a9 的大作中提到】
: 我想拨号后,加一条获取到ip地址的子网的路由,这个应该怎么做呢?
a9
发帖数: 21638
3
我就是想知道这个 1.2.3.4怎么获取到?

【在 j*a 的大作中提到】
: ip ro add 1.2.3.4/32 dev tun0
N****w
发帖数: 21578
4
traceroute to an internet site..you will see it

【在 a9 的大作中提到】
: 我就是想知道这个 1.2.3.4怎么获取到?
a9
发帖数: 21638
5
我还能ifconfig呢。
我是想自动把子网加上,现在是pon以后,只能自动加上服务器的路由。
Destination Gateway Genmask Flags Metric Ref Use
Iface
172.16.0.200 * 255.255.255.255 UH 0 0 0 ppp0
192.168.1.0 * 255.255.255.0 U 0 0 0 eth0
现在是这样,
我想自动加上
route add -net 172.16.0.0/24 dev ppp0 这一条。

【在 N****w 的大作中提到】
: traceroute to an internet site..you will see it
z**r
发帖数: 17771
6
这个子网你没有办法知道,除非别人告诉你,因为你的pptp client和pptp server之间
没有
route exchange,最简单的办法就是直接加一条default gateway。
你是自己改配置文件还是用GUI建立连接?GUI的话应该有一个routing tab,也可以修
改/etc/ppp/ip-up.d/route-traffic 文件,具体格式man一下就知道了

ppp0
eth0

【在 a9 的大作中提到】
: 我还能ifconfig呢。
: 我是想自动把子网加上,现在是pon以后,只能自动加上服务器的路由。
: Destination Gateway Genmask Flags Metric Ref Use
: Iface
: 172.16.0.200 * 255.255.255.255 UH 0 0 0 ppp0
: 192.168.1.0 * 255.255.255.0 U 0 0 0 eth0
: 现在是这样,
: 我想自动加上
: route add -net 172.16.0.0/24 dev ppp0 这一条。

a9
发帖数: 21638
7
恩。我手动加上了。
可能windows是自己猜的。我看172段的就给了个255.255.0.0的掩码,192.168.1的就给
了个
255.255.255.0的掩码。不管了,反正子网也基本上不会变,就硬写在那儿吧。

【在 z**r 的大作中提到】
: 这个子网你没有办法知道,除非别人告诉你,因为你的pptp client和pptp server之间
: 没有
: route exchange,最简单的办法就是直接加一条default gateway。
: 你是自己改配置文件还是用GUI建立连接?GUI的话应该有一个routing tab,也可以修
: 改/etc/ppp/ip-up.d/route-traffic 文件,具体格式man一下就知道了
:
: ppp0
: eth0

j*a
发帖数: 14423
8
你是没看清这个命令怎么用吧?p2p interface写dev xxx就好 不需要具体的via a.b.c
.d

【在 a9 的大作中提到】
: 我就是想知道这个 1.2.3.4怎么获取到?
j*a
发帖数: 14423
9
你那个子网包括了服务器的网络?
直接
ip ro add 172.16.0.0/24 dev ppp0就好
你研究下ip ro命令。route过时了。

ppp0
eth0

【在 a9 的大作中提到】
: 我还能ifconfig呢。
: 我是想自动把子网加上,现在是pon以后,只能自动加上服务器的路由。
: Destination Gateway Genmask Flags Metric Ref Use
: Iface
: 172.16.0.200 * 255.255.255.255 UH 0 0 0 ppp0
: 192.168.1.0 * 255.255.255.0 U 0 0 0 eth0
: 现在是这样,
: 我想自动加上
: route add -net 172.16.0.0/24 dev ppp0 这一条。

a9
发帖数: 21638
10
我知道这个172.16.0.0,我可以手工添加,但我是想自动来。
就是让系统自动知道这个172.16.0.0

【在 j*a 的大作中提到】
: 你那个子网包括了服务器的网络?
: 直接
: ip ro add 172.16.0.0/24 dev ppp0就好
: 你研究下ip ro命令。route过时了。
:
: ppp0
: eth0

1 (共1页)
进入Linux版参与讨论
相关主题
能否建立一个虚拟网卡并监听端口?求助:ubuntu9.04 无线wpa上网失败
help: iptables 问题求助:ubuntu上不了网(非无线)
求助: How to add Trusted Devices in Firewall on RedHat 5 (or Centos 5)?How to change pc wireless mac address under Ubuntu system?
OpenWRT 新版本改进了很多Linux下什么命令能知道哪个网卡插了线了?
网络设置问题Re: 有没有什么网络函数能够 (转载)
linux routing table question from dummywon't take the eth0 config from /etc/network/interaces
is this legal: can still ping eth1 through eth0, even if eth1 cable is unpluggedunplug the network cable, ifconfig still says up
这边高手多,问个简单网络问题shall i call system("ifconfig eth0 ... up") or write my own (转载)
相关话题的讨论汇总
话题: 子网话题: ppp0话题: pptp话题: 获取话题: 拨号