首页 > 常识 > 互联网 > 网站制作 > 常见问题

Apache面板登陆时提示 IP address has changed!

作者:汤树东等  时间:2016-04-22
描述:如果你买了一款国外的主机,登陆CP面板时,竟然出现IP address has changed!提示,无法登陆管理域名、数据库什么的,这说明主机商采取了基于动态IP拦截措施,你只能在固定的IP网络上才能正常登陆。
《生活宝典shenghuobaodian.com》讯 如果你买了一款国外的主机,登陆CP面板时,竟然出现IP address has changed!提示,无法登陆管理域名、数据库什么的,这说明主机商采取了基于动态IP拦截措施,你只能在固定的IP网络上才能正常登陆。
 
解决CP面板登陆IP address has changed!问题方法
 
服务器软件: Apache
 
如果你买了一款国外的主机,登陆CP面板时,竟然出现IP address has changed!提示,无法登陆管理域名、数据库什么的,这说明主机商采取了基于动态IP拦截措施,你只能在固定的IP网络上才能正常登陆。
 
有些网友以为是浏览器缓存问题,其实不然,这是与你的电脑网络IP有关,解决方法或办法什么的,也不是清空cookie可以解决的。可以说,这个清空是没用,网上搜到,有人说:被使用了基于动态IP的转发类网络什么的,也就是说你只要换个IP即可。
 
这里我找到了一个很好的解决办法,你只要用一个翻墙工具,打开主机商给你的CP面板登陆网址,即可顺利登陆啦。
 
我周末也是购买了一个国外主机,也遇到了CP面板登陆显示“IP address has changed!”问题,当时不知如何是好,最后启用电脑自带的翻墙工具Puff,竟然顺利登陆且可以自由管理了。
 
顺便讲一下,如果你用在线代理解决这个CP面板登陆IP address has changed!问题,可能出现登陆顺利,但是无法管理下载的问题。
 
建议用专业的代理软件或翻墙工具。不然,不能顺利进行CP面板登陆,而我用的是VPS,比较高级,CP面板登陆IP address has changed!问题如此解决,是不是很简单呢。
 
CP面板登陆不了  IP address has changed!  IP address has changed  CP面板教程
 
Cpanel提示ip address has changed
 
有用户反映问题如下:
 
登录cpanel的时候显示ip address has changed!登陆不了
 
这句话的意思就是用户的IP改变了,所以cpanel自动登出,这是cpanel的一个安全机制,一旦登录用户的ip地址发生了改变,则强制将用户登出。
 
出现这个问题,并不是服务器的原因,而是您的网络环境IP地址频繁改变导致。
 
这也不难理解某些用户所有的机房均出现这个问题(所有机房服务器同时都出问题的几率几乎没有),因为问题就在您的这边。
 
用户的IP地址频繁改变的原因很多:
 
你是小区宽带,如e家宽,长宽,艾谱;你的电脑多个网卡;你在公司上网;
 
解决方法:换一个正常的网络环境;挂VPN访问;无其他方法。
 
地址无误,多次尝试还不可以的话可以尝试一下HTTPS登录看看。
 
利用powershell修改ip属性
 
只要利用几个method就ok了.首先得找好网卡,毕竟adapter有很多.还有好多微软免费提供的,所以需要找到lan的网卡,可以使用property:ipenabled=$true来做区别,当然也可以用别的,筛选需要修改ip属性的网卡后,可以新建一个变量指向它,或者直接挂属性,都可以.说一下过程
 
1.动态变静态
 
EnableStatic
 
The EnableStatic WMI class method enables static TCP/IP addressing for the target network adapter. As a result, DHCP for this network adapter is disabled.This topic uses Managed Object Format (MOF) syntax. For more information about using this method, see Calling a Method.
 
Syntax
uint32 EnableStatic( [in] string IPAddress[], [in] string SubnetMask[] );
Parameters
IPAddress [in] 
Lists all of the static IP addresses for the current network adapter. Example: 155.34.22.0.
 
SubnetMask [in] 
Subnet masks that complement the values in the IPAddress parameter. Example: 255.255.0.0.
 
SetGateways
 
The SetGateways WMI class method specifies a list of gateways for routing packets to a subnet that is different from the subnet that the network adapter is connected to. This method only works when the Network Interface Card (NIC) is in the static IP mode.
This topic uses Managed Object Format (MOF) syntax. For more information about using this method, see Calling a Method.
 
Syntax
uint32 SetGateways( [in] string DefaultIPGateway[], [in] uint16 GatewayCostMetric[] );
Parameters
DefaultIPGateway [in] 
List of IP addresses to gateways where network packets are routed.
 
GatewayCostMetric [in] 
Assigns a value that ranges from 1 to 9999, which is used to calculate the fastest and most reliable routes. The values of this parameter correspond with the values in the DefaultIPGateway parameter. The default value for a gateway is 1. This optional parameter is new for Windows 2000.
 
SetDNSServerSearchOrder
 
The SetDNSServerSearchOrder WMI class method uses an array of string elements to set the server search order. This is an instance-dependent method call that applies on a per-adapter basis. After static DNS servers are specified to start using Dynamic Host Configuration Protocol (DHCP) instead of static DNS servers, you can call the method without supplying "in" parameters. In Windows 2000, the setting applies to the targeted adapter. In Windows NT, the setting is global.
This topic uses Managed Object Format (MOF) syntax. For more information about using this method, see Calling a Method.
 
Syntax
uint32 SetDNSServerSearchOrder( [in] string DNSServerSearchOrder[] );
Parameters
DNSServerSearchOrder [in] 
List of server IP addresses to query for DNS servers.
 
Example: 130.215.24.1 or 157.54.164.1
 
在这需要注意一下,setdnsserversearchorder只能接收一个dns地址,如果需要设置两个怎么办?用变量,比如$dnsservers="130.215.24.1","157.54.164.1 "   然后用SetDNSServerSearchOrder($dnsservers)就ok了,我也很奇怪,直接代进去就报错,还没找到原因
 
2. 静态设置动态
 
EnableDHCP
 
以前在ipconfig里面的release跟renew命令呢?可用下面两个method
 
ReleaseDHCPLease(ReleaseDHCPLeaseAll)  
 
RenewDHCPLease(RenewDHCPLeaseAll)
 
基本上常用的就这些了,现在在找设置alternate configuration的method,还没找到,今天眼疼....

从手机浏览器访问《生活宝典》

站内搜索
无相关信息
微商帮
世界网站大全
中国科研团队:大象的长鼻子是如何越变越长了
中国科研团队:大象的长
自己是否能够像自己想的那样做成一件事,身旁人的判断会比自己准确
自己是否能够像自己想
火宫殿:吃喝玩乐看,烧香拜神佛,红火的庙会经济
火宫殿:吃喝玩乐看,烧香
眼见为实也不为实,更须谨慎看到的并非全貌
眼见为实也不为实,更须