Changing default gateway on sbs08

Hello,
I need to change the default gateway on my small business server 2008 from 192.168.1.207 to 192.168.1.208. The server is used for exchange 2007 and pretty much runs our network.
My manager said this is a big job and I need to read up on DNS, MX records and changing SMTP server IP addresses but I cant see what else I would
need to do. 
Any help is greatly appreciated!
Thanks!

Hi Nuh,
If you are just looking to change just the gateway IP address, then FOVIA is correct. Just run the Connect to Internet Wizard. For all intensive purposes, your gateway is your firewall or router. Ex. below.
IP Address:   192.168.1.2  <-This is IP address for the server
Subnet:       255.255.255.0
Default Gateway:  192.168.1.207  <- This is the IP address for your gateway, the one that you need to change.
Now, if you manager is asking you to change physically change the gateway(firewall/router) and reconfigfure it and the network, then this "big job" does make sense when dealing DNS, MX records and such. If not, then just run the wizard and you should be
gold.

Similar Messages

  • How can I change default Gateway

    I have been able to change the default gateway address with various routers from 192.168.1.1 to 192.168.0.1.  The purpose of changeing the gateway is I can connect via a VPN connection to my office.  I realized all the router on 1.1 wouldn't connect but all the router on 0.1 could.  I was with comcast before.
    Now I have several computers (mine and other employee's) who cannot connect to the VPN as they are with verizon and all are on 1.1.  The problem is, verizon won't help and they say we need advanced network help and their not willing to assist.
    Can anyone help me and does anyone know if it's possible?
    Thanks in advance.

    Let me just throw in that I have an Actiontec router, not Westell, with FiOS, but I definitely have my router's IP set to 192.168.0.1.  DHCP range set to 192.168.0.100 thru .150.  All TV functions work, including remote DVR, mutl-room DVR, on-screen caller ID, and widgets.
    I haven't needed any Verizon tech support (knock on wood) but if I did, I'd reset to the default values and once tech support was done, restore using a saved config file.

  • Best practice to change default gateway for HA-CAM

    Hi,
    The next week end, i will have a downtime to change it's HA-CAM's default gateway.
    My question is, how can i do that?.
    This change is not synchronized if i change only from an active cam (service Ip) o it does?
    I was thinking on stops services for standby cam, then connect to a service ip, change its default gateway to active cam, then stops services and start them for standby cam and so on...
    This is correct or this idea is wrong?
    Please, I need suggestions.
    Thanks for advance.

    Kaylan
    If the user vlan is routed on a L3 device before going to either the MPLS router or the firewall you could use PBR on the L3 device (if supported).
    But as Reza says, we need more info on your network layout.
    Jon

  • Changing Default Gateway in Zone

    I'm alittle confused and embaroused to even post this. But, is there a restriction on changing the default gateway within a Zone? I get told I don't have insufficient privileges if I do it via "route". I even tried using /etc/defaultrouter, but that had no effect. Am I hitting a restriction that I was unaware of?

    Local zones are not allowed to change the network
    configuration at all; that includes the interface
    configuration (ifconfig) and the routing table
    (route).
    If your local zone is on the same subnet as the global
    zone, they can use the same default route (configured
    in the global zone). If they're on different subnets,
    you can configure two default routes in the global
    zone, and each zone will use the correct gateway.
    We have an open RFE to be able to set default routes
    in the zone configuration. It's unlikely that it'll
    make it into Solaris 10 soon though.
    Hope this helps,
    BlaiseThis sounds like it's independent of zones. I.e. if I only have the global zone and I have eri0 with 192.168.1.5/24 and qfe0 with 10.1.1.10/24 and then have two default gateways 192.168.1.1 and 10.1.1.1, it will pick the appropriate default gateway based on the src ip address of the outbound packet?
    If so, is this a new feature in Solaris 10, or do you know if previous versions also have the same behavior? Unfortunately the current available documentation out on docs.sun.com is not very clear on this (and since Solaris 10 is in beta, that's understandable). I've actually run into a couple of situations where this would be quite useful, so it'd be nice to know if I have to wait for Solaris 10 to be released or if its something that can be done today (I have no place to test this unfortunately)

  • Change default gateway using *netipaddress* cmdlet

    Hi, is there a way to change the DFG after the IP is assigned to an adapter?
    I am using Server 2012. I created a new IP using "new-netipaddress -Ipaddress 1.2.3.4 -prefixlength 24 -interfaceindex 10". I have forgotten to add the -defaultgateway parameter in the command. IP address was sucessfully assigned, but I cannot figure out
    a way to change/add a default gateway.
    Does anyone know how to do it via native powershell cmdlets (no gwmi, functions or scripts)?
    Cheers

    I am having a similar problem and using Remove-NetIPAddress does not really help. Remove-NetIPAddress does not affect gateway settings and gateways remain assigned to the net adapter. Furthermore, after I use RemoveNetIPAddress cmdlet, the NetTCPIP\Get-NetIPConfiguration
    cmdlet starts producing a non-terminating error. Here is a repro script:
    PS C:\> $IPAddress = '192.168.0.1'
    PS C:\> $DefaultGateway = '192.168.0.1'
    PS C:\>
    PS C:\> # Enumerate NIC configurations.
    PS C:\> $networks = NetTCPIP\Get-NetIPConfiguration
    Exception setting "NetProfile": "Cannot convert the "System.Object[]" value of type "System.Object[]" to type
    "Microsoft.Management.Infrastructure.CimInstance"."
    At C:\Windows\system32\WindowsPowerShell\v1.0\Modules\NetTCPIP\NetIPConfiguration.psm1:128 char:13
    +             $IPConfig.NetProfile = Get-NetConnectionProfile -InterfaceAlias $IfA ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], SetValueInvocationException
        + FullyQualifiedErrorId : ExceptionWhenSetting
    PS C:\> # Look for NIC that is not on corpnet.
    PS C:\> $privateNetwork = $networks | ? { $_.IPv4Address.PrefixOrigin -ne 'Dhcp'}
    PS C:\> $privateNetworkName = $privateNetwork.InterfaceAlias
    PS C:\> $privateNic = NetAdapter\Get-NetAdapter -Name $privateNetworkName
    PS C:\> $privateNic | NetTCPIP\Set-NetIPInterface -Dhcp Disabled
    PS C:\> $privateNic | NetTCPIP\Remove-NetIPAddress -Confirm:$false
    PS C:\> $privateNic | NetTCPIP\New-NetIPAddress -IPAddress $IPAddress -PrefixLength 24 -DefaultGateway $DefaultGateway
    NetTCPIP\New-NetIPAddress : Instance DefaultGateway already exists
    At line:1 char:15
    + $privateNic | NetTCPIP\New-NetIPAddress -IPAddress $IPAddress -PrefixLength 24 - ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidArgument: (MSFT_NetIPAddress:ROOT/StandardCimv2/MSFT_NetIPAddress) [New-NetIPAddr
       ess], CimException
        + FullyQualifiedErrorId : Windows System Error 87,New-NetIPAddress

  • Changing Router IP while keeping default Gateway

    Hello-  I have a Linksys WRT150N Wireless Router.  The default (out of the box) IP Address is 192.168.1.1, which is also the default Gateway.  I would like to know if it is possible to change the IP address to 192.168.1.2 while keeping the Gateway on 192.168.1.1.  The problem I run into is that when I do change the IP to 192.168.1.2, the Gateway also changes to that address.  I see it is possible under Automatic Configuration - DHCP  to change the IP and the Subnet Mask, but not the Gateway.  Any ideas?  Thank you
    Message Edited by thutter on 05-20-2008 05:36 AM

    No it won't be possible for you to do the settings i.e., to change the ip address to 192.168.1.2...better keep in the same & do the settings.

  • Should default gateway change when public IP chang...

    I understand that hub remains always as 192.   etc,
    but my question is when disconnecting from internet via Hub or powering down hub, thus getting new public Ip address -should the default gateway change as well?.  I always have a constant here?

    Thanks John,
    there may be some confusion - this is what I'm refreiing to - I may not have been clear, I do understnd that teh Hum i.e. 192.et,etc never changes  but under teh following settings on Home Hub manager this is what I see:
    network address changes
    Primary DNS changes & secondary........so should The default gateway in this box?
    TCP/IP settings
    Broadband network IP address
    81.xxxxxx
    Default gateway
    217.xx.xx.xxx
    Primary DNS
    213.xxxxx
    Secondary DNS
    213.1xxxxx

  • Computers connecting to internet via time capsule are reporting no internet connectivity.  PC is reporting default gateway has changed.  How to I correct this?

    Am having trouble with maintaining a stable wireless network via the Time Capsule.  Am running 1 Mac and 3 PC on a Time Capsule wireless in bridge mode connected to a Verizon wireless router.  Verizon wireless is turned off and the Time Capsule seems to be staying connected to the Verizon router.  When any of the connected computerss goes to stanby, they often report the internet is no longer available.  The PCs say the default gateway has changed ans the Mac simply reports the network parameters have changed.  What do I need to do to the Time Capsule to stabilize the wireless network?

    It is unlikely that the gateway changes.. but anything is possible.. sorry I am not in the US.. is your service adsl or cable?? What sort of lease time does the public IP have? Some cable companies now rotate then on the hour I noticed.. others on about 3months.. but most it is one day.
    Track it yourself.. see what gateway address the TC gets and if it is rotating with the IP.
    If your client computers are running Mountain Lion.. the plain fact is, they are not particularly stable.
    Wireless is worst.. ethernet tends to be ok.. but for instance Laptops updated to Mountain Lion can be pretty flakey.. with the TC.. and it is the combo that is more the issue. People report improvement with clean install of ML. BUT there is still a bug there that causes the ML to be less than fantastic.
    I experience it occasionally even with a dlink wireless router.. after a wake from sleep.. the network will drop out and need to be manually connected back.. I have to admit I expect no better from Mountain Lion. I could load Snow Leopard on it and it would drop once every blue moon.. but I got the laptop with ML so I live with it.. !!

  • Loss of default gateway - to auto-shutdown radio

    Hi,
    I need a solution where, if an access point looses its connection to its default gateway, that it automatically shuts the radio down. And when the default gateway is again available, the radio is automatically turned on again. By connection, I do not just mean that the AP FastEthernet port link status changes.
    Some kind of functionality like the 'track rtr reachability' that probes the default gateway, and takes action if the default gateway cannot be reached.
    How to, if at all possible...
    Problem is that wireless equipment will connect to the access point if the radio is up but the access point does not have access to its default gateway (for some error reason other than the local Ethernet link, but also that...)
    Thanks
    Johnny

    Hi,
    unfortunately that does not solve this problem:
    Router (def. gw for WAP)
    Switch 1
    Switch 2
    Wireless Access Point (WAP)
    If switch 1 is down or if the link from switch 1 to the router is down, then the WAP radio will still be up. I need for it to handle a loss to its default gateway, not just its local ethernet wire.
    Tx
    Johnny

  • Default Gateway when connected to VPN

    Thanks for reading!
    This is probably a dump question so bear with me...
    I have set up a VPN connection with a Cisco ASA 5505 fronting internet, with the customers environment behind it (on the same subnet), When connected ot the VPN I can reach the inside Router fronting me and one switch behind the Router (every switch is connected to the router), but nothing else.
    My beet is that the Router is messing with my connection, but,, nevermind that!, the setup ain't complete anyway... my question is more related to the Gateway I'm missing when I'm, from the outside, is connected to the VPN on the ASA, could this mess it up? Shouldn't I have a Standard-Gateway in the ipconfig settings in windows?
    This is who it looks like now:
            Anslutningsspecifika DNS-suffix . : VPNOFFICE
            IP-adress . . . . . . . . . . . . : 10.10.10.1
            Nätmask . . . . . . . . . . . . . : 255.255.255.0
            Standard-gateway  . . . . . . . . :
    The internal network is :
    172.16.12.0 255.255.255.0
    Below is my config for the ASA, thanks a lot!!!!!!!
    !FlASH PÅ ROUTERN FRÅN BÖRJAN
    !asa841-k8.bin
    hostname DRAKENSBERG
    domain-name default.domain.invalid
    enable password XXXXXXX
    names
    interface Vlan1
    nameif inside
    security-level 100
    ip address 172.16.12.4 255.255.255.0
    interface Vlan10
    nameif outside
    security-level 0
    ip address 97.XX.XX.20 255.255.255.248
    interface Ethernet0/0
    switchport access vlan 10
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    ftp mode passive
    clock timezone CEST 1
    clock summer-time CEDT recurring last Sun Mar 2:00 last Sun Oct 3:00
    dns server-group DefaultDNS
    domain-name default.domain.invalid
    object-group protocol TCPUDP
    protocol-object udp
    protocol-object tcp
    access-list nonat extended permit ip 172.16.12.0 255.255.255.0 10.10.10.0 255.255.255.0
    access-list MSS_EXCEEDED_ACL extended permit tcp any any
    access-list VPN-SPLIT-TUNNEL remark VPN SPLIT TUNNEL
    access-list VPN-SPLIT-TUNNEL standard permit 172.16.12.0 255.255.255.0
    tcp-map MSS-MAP
      exceed-mss allow
    pager lines 24
    logging enable
    logging timestamp
    logging buffer-size 8192
    logging console notifications
    logging buffered notifications
    logging asdm notifications
    mtu inside 1500
    mtu outside 1500
    ip local pool VPN 10.10.10.1-10.10.10.40 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    icmp permit any inside
    icmp permit any outside
    asdm image disk0:/asdm-625-53.bin
    no asdm history enable
    arp timeout 14400
    global (outside) 1 interface
    nat (inside) 0 access-list nonat
    nat (inside) 1 172.16.12.0 255.255.255.0
    route outside 0.0.0.0 0.0.0.0 97.XX.XX.17 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout uauth 0:05:00 absolute
    dynamic-access-policy-record DfltAccessPolicy
    aaa authentication ssh console LOCAL
    http server enable
    http 172.16.12.0 255.255.255.0 inside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac
    crypto ipsec transform-set ESP-DES-SHA esp-des esp-sha-hmac
    crypto ipsec transform-set ESP-DES-MD5 esp-des esp-md5-hmac
    crypto ipsec transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac
    crypto ipsec transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
    crypto ipsec transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac
    crypto ipsec transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set pfs group1
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5
    crypto map outside_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map outside_map interface outside
    crypto isakmp enable outside
    crypto isakmp policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    crypto isakmp policy 65535
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    telnet timeout 5
    ssh 172.16.12.0 255.255.255.0 inside
    ssh timeout 5
    console timeout 0
    threat-detection basic-threat
    threat-detection statistics access-list
    group-policy VPNOFFICE internal
    group-policy VPNOFFICE attributes
    dns-server value 215.122.145.18
    vpn-tunnel-protocol IPSec
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value VPN-SPLIT-TUNNEL
    default-domain value VPNOFFICE
    split-dns value 215.122.145.18
    msie-proxy method no-proxy
    username admin password XXXXXX privilege 15
    username Daniel password XXXXX privilege 0
    username Daniel attributes
    vpn-group-policy VPNOFFICE
    tunnel-group VPNOFFICE type remote-access
    tunnel-group VPNOFFICE general-attributes
    address-pool VPN
    default-group-policy VPNOFFICE
    tunnel-group VPNOFFICE ipsec-attributes
    pre-shared-key XXXXXXXXXX
    class-map MSS_EXCEEDED_MAP
    match access-list MSS_EXCEEDED_ACL
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect netbios
      inspect rsh
      inspect rtsp
      inspect skinny 
      inspect esmtp
      inspect sqlnet
      inspect sunrpc
      inspect tftp
      inspect sip 
      inspect xdmcp
      inspect icmp error
      inspect pptp
      inspect ipsec-pass-thru
      inspect icmp
    class MSS_EXCEEDED_MAP
      set connection advanced-options MSS-MAP
    service-policy global_policy global
    privilege cmd level 3 mode exec command perfmon
    privilege cmd level 3 mode exec command ping
    privilege cmd level 3 mode exec command who
    privilege cmd level 3 mode exec command logging
    privilege cmd level 3 mode exec command failover
    privilege cmd level 3 mode exec command packet-tracer
    privilege show level 5 mode exec command import
    privilege show level 5 mode exec command running-config
    privilege show level 3 mode exec command reload
    privilege show level 3 mode exec command mode
    privilege show level 3 mode exec command firewall
    privilege show level 3 mode exec command asp
    privilege show level 3 mode exec command cpu
    privilege show level 3 mode exec command interface
    privilege show level 3 mode exec command clock
    privilege show level 3 mode exec command dns-hosts
    privilege show level 3 mode exec command access-list
    privilege show level 3 mode exec command logging
    privilege show level 3 mode exec command vlan
    privilege show level 3 mode exec command ip
    privilege show level 3 mode exec command ipv6
    privilege show level 3 mode exec command failover
    privilege show level 3 mode exec command asdm
    privilege show level 3 mode exec command arp
    privilege show level 3 mode exec command route
    privilege show level 3 mode exec command ospf
    privilege show level 3 mode exec command aaa-server
    privilege show level 3 mode exec command aaa
    privilege show level 3 mode exec command eigrp
    privilege show level 3 mode exec command crypto
    privilege show level 3 mode exec command vpn-sessiondb
    privilege show level 3 mode exec command ssh
    privilege show level 3 mode exec command dhcpd
    privilege show level 3 mode exec command vpnclient
    privilege show level 3 mode exec command vpn
    privilege show level 3 mode exec command blocks
    privilege show level 3 mode exec command wccp
    privilege show level 3 mode exec command webvpn
    privilege show level 3 mode exec command module
    privilege show level 3 mode exec command uauth
    privilege show level 3 mode exec command compression
    privilege show level 3 mode configure command interface
    privilege show level 3 mode configure command clock
    privilege show level 3 mode configure command access-list
    privilege show level 3 mode configure command logging
    privilege show level 3 mode configure command ip
    privilege show level 3 mode configure command failover
    privilege show level 5 mode configure command asdm
    privilege show level 3 mode configure command arp
    privilege show level 3 mode configure command route
    privilege show level 3 mode configure command aaa-server
    privilege show level 3 mode configure command aaa
    privilege show level 3 mode configure command crypto
    privilege show level 3 mode configure command ssh
    privilege show level 3 mode configure command dhcpd
    privilege show level 5 mode configure command privilege
    privilege clear level 3 mode exec command dns-hosts
    privilege clear level 3 mode exec command logging
    privilege clear level 3 mode exec command arp
    privilege clear level 3 mode exec command aaa-server
    privilege clear level 3 mode exec command crypto
    privilege cmd level 3 mode configure command failover
    privilege clear level 3 mode configure command logging
    privilege clear level 3 mode configure command arp
    privilege clear level 3 mode configure command crypto
    privilege clear level 3 mode configure command aaa-server
    prompt hostname context
    Cryptochecksum:aaa1f198bf3fbf223719e7920273dc2e
    : end

    I didn't realise I had that crypto settings on, thanks my bad!!!
    But... the 172.16.12.0 network is directly connected, the Router (that to be honest is a firewall) / switches is all on the same subnet (172.16.12.X/24), so sorry I didn't explain thoroughly, was more wondering about the GW and didn't want to overcomplicate things..
    The Firewall/Router dosen't do any routing, so it should work right (I you count out the firewalling in the firewall and so forth, there shouldn't be any problems accomplishing this with the ASA)? The Firewall is more a DHCP for the clients/Firwall for the clients.. this will change in the future.. it will be removed,
    the vpn network is staticly routed back to my ASA in that firewall...
    I don't like this solution.. but this is who it looks.. for now..
    (VPN network is 10.10.10.X/24)
    But... shouldn't I see a default gateway under ipconfig when I'm connected to the VPN from internet, on the vpn client that's vpned in, is this correct?
    THANKS for all the help!

  • Wrt54g router v 8.2 -no default gateway

    i have tried everything and this routher will not work!  I travel with it when i come home for the holidays and normaly i have to get some help from someone to figure out how to get the cpu to work along with the wireless.  at this point nothing is working.  the modem is a westell mo. 6100. all the lights are working and when i plug my laptop into the ethernet cord it works fine.    when the modem is pluged into the router and the ethernet cord is pluged from port one to the back of the cpu   the cpu says there is an issue with its ip address being the same as something elses.  the wireless ssid pops up and i can connect to it with my macbook but the internet does not work at all. I can connect to the router through 192.168.1.1 and have security setup etc.  imy mac address shows up in the dhcp clients list....  in the status tab everything looks normal except the default gateway is  all zeros.
    anybody have any idea what is happening?
    i would like to be able to get the net on the cpu as well as wireless at the same time but if i could just get the wireless to atleast work that would be great
    Solved!
    Go to Solution.

    If you are not able to see any Default gateway under the Status Tab, Because your Modem and Router Shares the Same IP address on the Network.... To make your Computers go Online from the Linksys Router... Login to the Linksys Router setup page and below the setup tab change the "Local IP address" to 192.168.2.1 and click on Save Settings... and then you need to Power Cycle your Network.....
    Unplug the Power from the Router and and Modem, wait for 30sec and then first plug the power to your Modem and once all the lights are lid on your Modem, then you can plug the power to the Linksys Router.. 
    Now check if you are able to go online from your computer Hardwired to the router. 

  • Incorrect Default Gateway for Clients using a Concentrator

    Hey all,
    Hopfully an easy one - I'm trying to configure a VPN Concentrator for use with the old VPN Client for an IPSec CVPN.
    The clients connect fine, but they are getting the incorrect default gateway during the address assignment.
    My address pool is 192.168.0.128/25.  The client correctly picks up the first address in the range, 192.168.0.129, but the default gateway for the VPN adapter is assigned as the next address in the range, 192.168.0.130.
    I need the gateway address to be 192.168.0.254 (the SVI of the L3 switch connected to the Concentrator), but I can't for the life of me fine a configuration option anywhere in the pool assignment.  I've set the tunnel default gateway to this 192.168.0.254, but this makes no difference.
    Any ideas where I can find this config option?
    Thanks!

    Andrew
    In the chart that you posted about the routing setup it refers to a DMZ network and DMZ gateway. Can you clarify what these are since I do not see them in the drawing that is in that post?
    I agree with Herbert that it is cleaner to have the address pool on the concentrator use addresses that do not overlap with the concentrator subnet connecting to the layer 3 switch. And as long as the layer 3 switch has a route to that address pool, and the next hop in the route is the address of the concentrator interface then the separate pool addressing should work just fine.
    I have re-read this thread and want to make sure that after some changes that you have made that the problem symptoms are still the same. You told us earlier that: "Now the client can ping the interfaces on its local LAN (concentrator  interface 192.168.0.253, and the L3 switch, 192.168.0.253), but it  cannot reach the rest of our internal LAN behind the layer 3 switch." Is this still an accurate statement of the problem?
    As Herbert said earlier this could either be caused by the concentrator not have a correct route for the inside or it could be  because the inside does not have a correct route to the client. In re-reading your description of the routing set up it looks like the concentrator has a default route configured but not the tunnel default route. May I suggest that you try configuring a tunnel default route (in addition to the normal default route) and see whether that makes any difference?
    If that does not help the problem then I would suggest that you verify that the devices on the inside do have their default gateway set correctly and that the layer 3 switch does have a route for the VPN address pool with the concentrator interface address as the next hop.
    HTH
    Rick
    [edit] I just focused on the question that you asked about the concentrator possibly needing a route for the address pool. The concentrator does not need any route statements for the address pool - it knows its own address pool, pretty much like having a connected interface subnet. The layer 3 switch is what needs a route for the address pool.

  • Physical interface Default Gateway connecting VPN with AnyConnect

    When I connect vpn with AnyConnect, I can't see default gateway on Physical Interface.
    before connect vpn
    ==========================================
    C:\WINDOWS\system32>ipconfig
    Windows IP Configuration
    Ethernet adapter Local Area
            Connection-specific DNS Suffix  . :
            IP Address. . . . . . . . . . . . : 10.1.1.100
            Subnet Mask . . . . . . . . . . . : 255.255.255.0
            Default Gateway . . . . . . . . . : 10.1.1.10
    after connect vpn with anyconnect
    ==========================================
    C:\WINDOWS\system32>
    C:\WINDOWS\system32>ipconfig
    Windows IP Configuration
    Ethernet adapter Local Area
            Connection-specific DNS Suffix  . :
            IP Address. . . . . . . . . . . . : 10.1.1.100
            Subnet Mask . . . . . . . . . . . : 255.255.255.0
            Default Gateway . . . . . . . . . :'Can't see default gateway'
    Is this the specification of Anyconnect?

    Nyanko,
    This will happen when you are using tunnel all as the split tunneling policy, the computer will encrypt all the traffic so the default gateway will be removed from the physical connection and placed into the virtual adapter. If you take a look at the routing table you will see that what really happens is that the original default route's metric will be changed so that it is higher than the one injected by the virtual adapter, once you disconnect it should go back to normal.
    Further information on split tunneling:
    http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a0080975e83.shtml
    HTH
    Jonnathan

  • Where we need to put default gateway?

    Hi ,
    I am installing ORACLE RAC on vmware.
    my network setting is in this way.
    on node1
    eth0 192.168.0.1
    eth1 192.168.0.11
    on node 2
    eth0 192.168.0.2
    eth1 192.168.0.22
    where should i define default gateway. i.e on eth0 or eth1?
    thanks.

    Hi chandra,
    I did initially but at that time i was getting an error.
    after that i set the vip only for eth0 was getting an error but i change the parameter in racgvip it works.
    In the previous where i applied vip on both eth0 and eth1 in that i doesnt work.
    I am confused. In my case it doesnt work for both unlsess i change the parameter in racgvip.
    in both was getting an error default gateway is not defined.
    Thanks

  • Wrt54g default gateway setting

    I am looking to use my wrt54g router with my FIOS and Actiontec router/modem. Both use the same default gateway. How do I change the default gateway on my wrt54g from 192.168.1.1 to 192.168.1.0?
    When I open up this address with IE and the Linksys setup pages come up there is no place to change the default gateway. Any suggestions?
    thank you in advance
    John

    Are you trying to change the IP of your router?  If so, that should be on the first page that comes up when you login to the router.  I'm confused by you saying that you want to change the "default gateway."

Maybe you are looking for

  • How to connect wireless keyboard to new machine for setup?

    I have a new Mac Mini Lion Server and only have wireless keyboard and wireless mouse. When I startup the Mac Mini and turn on the mouse and keyboard, mouse is connected but keyboard is not. I do not have a USB keyboard. How can I get the Mac Mini to

  • How connect External monitor to iMac?

    How connect External monitor to iMac?

  • Project 2007 with Office 365 online

    Hi, I am looking for the Project 2007 compatibility with Office 365 online with SP 2013. Is this possible? If yes, what is the procedure to configure that. I have not worked on Project Server, if anyone can help me or provide any reference links that

  • Alerters in OBIEE (Highlighting the data in Report)

    Hi All, I am basically Business Objects guy. I have one doubt, In BO we have one option like "Alerters" for highlighting the data. Ex: If suppose i want to display the data for the year of 2009 in red color and data for 2008 in yellow in this case we

  • Default Web Application ist not visible in WebLogic Console

    We are using Weblogic 5.1.0 SP7           We moved our Application from the Implicitly Defined Default Web           Application which is configurated by the weblogic properties to a Web           Application. Because we don't want to change any URL