Linking TC and a Router

Dear all,
I've recently purchased TC.
My set up is a 2011 MBP 2,2ghz and an Asus Router WL-AM604g.
Once out of the box I've configured TC through Airport utility to join the existing wifi network provided by the Asus Router and it worked fine.
However I've decided to use TC as provider of the wifi network in my home and use the Router as a simple modem mainly because TC should have a faster wifi speed and I want to use this as an external HDD
As I read somewhere that in order to do so it is necessary to physically link TC and the Router I went to my router page in safari and turned off the "wireless" setting.
Then I configured in Airport Utility TC to create a new wifi network.
I linked TC with the Asus router through an ethernet cable (from the WAN port in TC to the LAN port in the router), however TC keeps report as a problem that there is nothing linked to the WAN port.
Please note that:
- After doing this MAC sees the wifi network (TC is listed in finder)
- the Ethernet cable works (I use it to physically link MBP and the router to write this email)
May somebody help me in achieving this set-up?
Internet -> Router ->Ethernet->TC->wifi->MBP
Thank you very much and apologies if my english is not that good!
Alessandro

Ahh, thanks for clarifying. Out of sheer curiosity, have you tried pinging the two machines? Also, are they mutually invisible? If you fire up iTunes on both machines are they then able to see one another?
Try this and let us know what happens:
On the Windows machine, open up a DOS window, type in ipconfig /all and record the IP address on a Post-It note (you'll need it later).
On the Mac open up Terminal and enter ifconfig -a and once again record the IP address on a Post-it note.
Choose one machine, it really doesn't matter which, and enter ping nnn.nnn.nnn.nnn where n = the IP address recorded. What's interesting is what, if anything, the return time is.
It is possible that you may not be able to Ping one or the other machines. Check the firewall on one or both and make sure that the firewall allows ping (ICMP requests). If one or both firewalls disallow it, change it so that it is allowed and try again. If they still can't see one another then you are having a routing problem, most likely.
If they can see one another (and they should at least be pingable) then check the firewall and make sure that everything inside your local IP space is trusted. You can derive the local IP space by looking at the IP address of both machines and your TC. Your TC, if it is the router (in my home network it isn't) should show up as something like 192.168.1.1 or some-such-like-that. ALL your machines inside the router (as opposed to the cable modem or dsl modem) should show up as 192.168.1.x or similar.
Let me know what the results of that is.
Cheers
Adrienne

Similar Messages

  • Any speed difference between Apple Wifi Router(air express) and Tp link(or others) wifi router)

    Any speed difference between Apple Wifi Router(air express) and Tp link(or others) wifi router?
    I'm using a tp link router and sometimes it takes a long time delay for my 2 mac computers to connect each other. I don't know this is because of the router compability or the computers.

    Anyone knows?

  • L2 and L3 Routed Link between 2 COREs

    Hi
    What is the difference between L2 (Dot1q) and L3 Routed Link between 2 COREs in term of Functionality 
    thanks

    Hello Ibrahim ,
    I will try to explain , 
    VLANs put tag on frames to ensure packet do not leave layer 2 broadcast domain and yet will reach to all ports part of that vlan ( as per tag ) .
    Layer 3 SVIs on other hand provides layer 3 reachability for vlans and hosts inside layer 2 vlan . To achieve this all layer2 vlan host provide with related layer 3 SVIs ip address as gateway .
    I hope you got it by now . 
    HTH
    Sunil Bhadauria 
    ! Kindly rate all helpful posts  and accordingly mark correct answers to help forum !

  • How to Bind a Combo Box so that it retrieves and display content corresponding to the Id in a link table and populates itself with the data in the main table?

    I am developing a desktop application in Wpf using MVVM and Entity Frameworks. I have the following tables:
    1. Party (PartyId, Name)
    2. Case (CaseId, CaseNo)
    3. Petitioner (CaseId, PartyId) ............. Link Table
    I am completely new to .Net and to begin with I download Microsoft's sample application and
    following the pattern I have been successful in creating several tabs. The problem started only when I wanted to implement many-to-many relationship. The sample application has not covered the scenario where there can be a any-to-many relationship. However
    with the help of MSDN forum I came to know about a link table and managed to solve entity framework issues pertaining to many-to-many relationship. Here is the screenshot of my application to show you what I have achieved so far.
    And now the problem I want the forum to address is how to bind a combo box so that it retrieves Party.Name for the corresponding PartyId in the Link Table and also I want to populate it with Party.Name so that
    users can choose one from the dropdown list to add or edit the petitioner.

    Hello Barry,
    Thanks a lot for responding to my query. As I am completely new to .Net and following the pattern of Microsoft's Employee Tracker sample it seems difficult to clearly understand the concept and implement it in a scenario which is different than what is in
    the sample available at the link you supplied.
    To get the idea of the thing here is my code behind of a view vBoxPetitioner:
    <UserControl x:Class="CCIS.View.Case.vBoxPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:v="clr-namespace:CCIS.View.Case"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    d:DesignWidth="300"
    d:DesignHeight="200">
    <UserControl.Resources>
    <DataTemplate DataType="{x:Type vm:vmPetitioner}">
    <v:vPetitioner Margin="0,2,0,0" />
    </DataTemplate>
    </UserControl.Resources>
    <Grid>
    <HeaderedContentControl>
    <HeaderedContentControl.Header>
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
    <TextBlock Margin="2">
    <Hyperlink Command="{Binding Path=AddPetitionerCommand}">Add Petitioner</Hyperlink>
    | <Hyperlink Command="{Binding Path=DeletePetitionerCommand}">Delete</Hyperlink>
    </TextBlock>
    </StackPanel>
    </HeaderedContentControl.Header>
    <ListBox BorderThickness="0" SelectedItem="{Binding Path=CurrentPetitioner, Mode=TwoWay}" ItemsSource="{Binding Path=tblParties}" />
    </HeaderedContentControl>
    </Grid>
    </UserControl>
    This part is working fine as it loads another view that is vPetioner perfectly in the manner I want it to be.
    Here is the code of vmPetitioner, a ViewModel:
    Imports Microsoft.VisualBasic
    Imports System.Collections.ObjectModel
    Imports System
    Imports CCIS.Model.Party
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' ViewModel of an individual Email
    ''' </summary>
    Public Class vmPetitioner
    Inherits vmParty
    ''' <summary>
    ''' The Email object backing this ViewModel
    ''' </summary>
    Private petitioner As tblParty
    ''' <summary>
    ''' Initializes a new instance of the EmailViewModel class.
    ''' </summary>
    ''' <param name="detail">The underlying Email this ViewModel is to be based on</param>
    Public Sub New(ByVal detail As tblParty)
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Me.petitioner = detail
    End Sub
    ''' <summary>
    ''' Gets the underlying Email this ViewModel is based on
    ''' </summary>
    Public Overrides ReadOnly Property Model() As tblParty
    Get
    Return Me.petitioner
    End Get
    End Property
    ''' <summary>
    ''' Gets or sets the actual email address
    ''' </summary>
    Public Property fldPartyId() As String
    Get
    Return Me.petitioner.fldPartyId
    End Get
    Set(ByVal value As String)
    Me.petitioner.fldPartyId = value
    Me.OnPropertyChanged("fldPartyId")
    End Set
    End Property
    End Class
    End Namespace
    And below is the ViewMode vmParty which vmPetitioner Inherits:
    Imports Microsoft.VisualBasic
    Imports System
    Imports System.Collections.Generic
    Imports CCIS.Model.Case
    Imports CCIS.Model.Party
    Imports CCIS.ViewModel.Helpers
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' Common functionality for ViewModels of an individual ContactDetail
    ''' </summary>
    Public MustInherit Class vmParty
    Inherits ViewModelBase
    ''' <summary>
    ''' Gets the underlying ContactDetail this ViewModel is based on
    ''' </summary>
    Public MustOverride ReadOnly Property Model() As tblParty
    '''' <summary>
    '''' Gets the underlying ContactDetail this ViewModel is based on
    '''' </summary>
    'Public MustOverride ReadOnly Property Model() As tblAdvocate
    ''' <summary>
    ''' Gets or sets the name of this department
    ''' </summary>
    Public Property fldName() As String
    Get
    Return Me.Model.fldName
    End Get
    Set(ByVal value As String)
    Me.Model.fldName = value
    Me.OnPropertyChanged("fldName")
    End Set
    End Property
    ''' <summary>
    ''' Constructs a view model to represent the supplied ContactDetail
    ''' </summary>
    ''' <param name="detail">The detail to build a ViewModel for</param>
    ''' <returns>The constructed ViewModel, null if one can't be built</returns>
    Public Shared Function BuildViewModel(ByVal detail As tblParty) As vmParty
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Dim e As tblParty = TryCast(detail, tblParty)
    If e IsNot Nothing Then
    Return New vmPetitioner(e)
    End If
    Return Nothing
    End Function
    End Class
    End Namespace
    And final the code behind of the view vPetitioner:
    <UserControl x:Class="CCIS.View.Case.vPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    Width="300">
    <UserControl.Resources>
    <ResourceDictionary Source=".\CompactFormStyles.xaml" />
    </UserControl.Resources>
    <Grid>
    <Border Style="{StaticResource DetailBorder}">
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="*" />
    </Grid.ColumnDefinitions>
    <TextBlock Grid.Column="0" Text="Petitioner:" />
    <ComboBox Grid.Column="1" Width="240" SelectedValuePath="." SelectedItem="{Binding Path=tblParty}" ItemsSource="{Binding Path=PetitionerLookup}" DisplayMemberPath="fldName" />
    </Grid>
    </Border>
    </Grid>
    </UserControl>
    The problem, presumably, seems to be is that the binding path "PetitionerLookup" of the ItemSource of the Combo box in the view vPetitioner exists in a different ViewModel vmCase which serves as an ObservableCollection for MainViewModel. Therefore,
    what I need to Know is how to route the binding path if it exists in a different ViewModel?
    Sir, I look forward to your early reply bringing a workable solution to the problem I face. 
    Warm Regards,
    Arun

  • Adding VLAN to Po-Group and OSPF routing what is the correct way?

    Hi Community,
    I recently had an issue that brought down the links between a couple of switches...luckily this was done after hours and I did not save the config so was able to revert back.
    The basic scope of my project is:
    We are running out of IP's on the 192.168.1.0/24 sunbnet so wanted to create a seperate VLAN/Subnet  for physical workstations.
    He is what I orginally did;
    1) On our core switch; (Switch1) 
         Create the VLAN,
         VLAN interface,
         DHCP pool,
         excluded address'
    2) On second  switch (Switch 2)
         Add VLAN name, no interface
    3) I then updated the PO-group on Switch1 with new VLAN  (this brought down the link before I was able to finish my config)
        Therefore I was not able to complete the following:
              add vlan to spanning-tree or updated OSPF routing
    Here is what I assume to be the correct order?
    1) On Core Switch (Switch 1)
         Create VLAN
         VLAN interface
         DHCP pool
         excluded address'
         add vlan to spanning-tree
         add vlan (passive interface) and sunbet to OSPF routing
    2) On Switch 2
         Add vlan name/interfaces with no ip
    3) Update PO groups after the above has been configured
         Add new VLAN to Po-Group on Switch 2
         Add new VLAN to Po-Group on Switch 1
    4) Last steps
         Updated specific access ports with new VLAN and test
         upon completion of testing, update all other access ports connected ot workstations with new VLAN
    Questions:
    Did my links go down because I added new VLAN to Po-group BEFORE  updating spanning-tree and OSPF routing?
    Can anyone verify the order as outlined in the section "Here is what I assume to be the correct order"

    So the order in which to apply TASKS is correct?
    also just to clarify the following TASK  based on your comments.
    Step 4- Add new VLANs to OSPF as passive interface
    On Switch 1 (core)
    We have this line of code
    router ospf 100
    router-id 192.168.1.10
    log-adjacency-changes
    passive-interface Vlan10
    passive-interface Vlan30
    passive-interface Vlan50
    passive-interface Vlan500
    network 192.168.0.2 0.0.0.0 area 0
    network 192.168.1.10 0.0.0.0 area 0
    network 192.168.30.254 0.0.0.0 area 0
    network 192.168.33.254 0.0.0.0 area 0
    network 192.168.51.254 0.0.0.0 area 0
    network 192.168.99.5 0.0.0.0 area 0
    network 192.168.200.254 0.0.0.0 area 0
    TASK: OSPF - Add new VLANs(40 & 41) to OSPF as Passive Interface
    ******* Begin Here  *********
    config t
    router ospf 100
    passive-interface vlan40
    passive-interface vlan41
    !WE SHOULD ADD THIS LINE OF CODE
    network 192.168.40.254 0.0.0.0 area 0
    network 192.168.41.254 0.0.0.0 area 0
    ******* End Here  *********
    RESULT:
    router ospf 100
    router-id 192.168.1.10
    log-adjacency-changes
    passive-interface Vlan10
    passive-interface Vlan30
    passive-interface Vlan40
    passive-interface Vlan41
    passive-interface Vlan50
    passive-interface Vlan500
    network 192.168.0.2 0.0.0.0 area 0
    network 192.168.1.10 0.0.0.0 area 0
    network 192.168.30.254 0.0.0.0 area 0
    network 192.168.33.254 0.0.0.0 area 0
    network 192.168.40.254 0.0.0.0 area 0
    network 192.168.41.254 0.0.0.0 area 0
    network 192.168.51.254 0.0.0.0 area 0
    network 192.168.99.5 0.0.0.0 area 0
    network 192.168.200.254 0.0.0.0 area 0
    Better??
    Again thanks...your feedback have been a tremendous help!

  • Hp6700 Printer: can't connect to D-Link DI-514 Wireless Router when Broadcast SSID is set to NO.

    HP6700 Printer:  can't connect to D-Link DI-514 Wireless Router when Router Broadcast SSID is set to NO. My MAC LapTop and HP LapTop both work with the SSID set to NO. If I change the Wireless Router to Broadcast SSID is YES, then the HP6700 Printer can connect to the Wireless Router. I setup the Printer telling it what the SSID and Password were, the same as both of my LapTops, but it never connects, unless I change the Router to broadcast the SSID. Help!
    This question was solved.
    View Solution.

    Did you try updating the firmware on the DI-514?
    You can also try setting a static IP on the printer, then assign the printer to the static DHCP list in the router interface.
    To give your printer a static IP address:
    - Print a Network Config Page from the front of the printer. Note the printer's IP address.
    - Type that IP address into a browser to reveal the printer's internal settings.
    - Choose the Networking tab, then Wireless along the left side, then the IPv4 tab.
    - On this screen you want to set a Manual IP. You need to set an IP address outside the range that the router automatically sets (called the DHCP range). If you do not know the range, change the last set of numbers (those after the last '.') to 250
    - Use 255.255.255.0 for the subnet (unless you know it is different, if so, use that)
    - Enter your router's IP (on the Network Config Page) for the gateway.
    - Enter 8.8.8.8 for the first DNS and 8.8.4.4 for the second DNS. This is Google DNS. You can choose another external DNS if you wish.
    - Click 'Apply'.
    Now, shut down the router and printer, start the router, wait, then start the printer.
    After this you will have delete and re-add the printer on your Mac.
    Show support by clicking the blue Kudos star in the post that resolved your problem. Doing so will help other forum members find their solutions too.

  • For all those with D-Link routers and problems with iTunes dropping AppleTV

    My setup: Custom built WinXP PC with iTunes 7.6.2. Apple TV w/Take 2. D-link DI-624 wireless N router, wired to the PC, wireless to the aTV.
    I have an intersting phenomenon occuring with my Apple TV. I can sync the aTV to my PC and it works fine, but the first time we receive a phone call on our VOIP phone, the router drops the ATV connection to the PC. aTV still has internet connectivity, but iTunes on the PC cannot see the aTV, and I cannot sync.
    A search yielded gobs of folks with D-link routers and iTunes/AppleTV connection issues. I just won an Airport Extreme router off ebay...as soon as I have a chance to test it out I will post back in this thread as to the results.
    I know folks don't like the solution to be "spend more money", but I think it would be worth it to a lot of people if they knew a different router would solve their issues (rather than continuing to guess or throw money at the problem randomly).

    I have a WinXP PC and a Linksys G class router. I am on Comcast broadband cable. Both ATV and PC are on wireless link. And I have tried a borrowed Apple Airport router (G class). That didn't help resolve this problem so far. I don't think it is a router issue as you will see that many folks on this forum have the same problem with a wide mix of environments. Many of them are on pure Apple components and so one cannot blame Microsoft and non-Apple devices.
    Having said this, I hope the new router resolves your issues. In my case, the only option left is to keep calling Apple Care.

  • Mi-Fi and a router

    I have a Cannon printer on a router. They say it's the only way to make it wireless. I have 4G MI-FI4510L. To print off internet, I have to click print, which puts it in printer queue,Then disconnect Mi-Fi and turn Router on. Any way that both can be recognized and print straight from internet while still on internet?

    The pepwave is definitly an interesting peice of equiptment which appears to address all of the roadblocks in this situation.  I've never tinkered with a device like that but it sounds like it would be helpful.  The diagram that TechIsMyLife provided does seem feasible.  Thanks for sharing that link!
    Keep in mind that even though the PepWave would allow you to connect the MiFi to the Router, you still have to cascade them togeather in order to make them share the same network.  A quick Google search should reveal the steps necessary to complete the cascading process.
    I think a better setup would be to eliminate the 2nd router if at all possible.  That way you can have the printer connect wirelessly to the MiFi and cut out an extra piece of equiptment to manage.  From the information you have provided so far, it sounds like you only need the extra router to enable your printer anyways.  If you find that you really want that extra router to be involved, then TechIsMyLife's solution is the only way to do it.

  • IPCP L2TP did not assigned address and install route

    Hi all,
    My Company recently using L2TP over radio link, for testing purpose the LNS using cisco 1841 and the L2TP client using 3 different machine:
    1. Hongdian Router
    2. Teldat Router
    3. Win XP client L2TP with IPSEC Disable
    there is problem when using Hongdian and Teldat router, the LNS did not assigned address and install route,the IPCP State suddenly closed as you can see at Debug LNS IPCP Fail.txt. I can assure you both router config is working (because when using another L2TP server like sl2tps or mikrotik, it just work fine).
    But When using Win L2TP client, it work as you can see at Debug LNS IPCP Success.txt
    i enclosed the config LNS too
    help plz anyone?

    Hi all,
    My Company recently using L2TP over radio link, for testing purpose the LNS using cisco 1841 and the L2TP client using 3 different machine:
    1. Hongdian Router
    2. Teldat Router
    3. Win XP client L2TP with IPSEC Disable
    there is problem when using Hongdian and Teldat router, the LNS did not assigned address and install route,the IPCP State suddenly closed as you can see at Debug LNS IPCP Fail.txt. I can assure you both router config is working (because when using another L2TP server like sl2tps or mikrotik, it just work fine).
    But When using Win L2TP client, it work as you can see at Debug LNS IPCP Success.txt
    i enclosed the config LNS too
    help plz anyone?

  • Using Link Aggregation and VLAN tagging with LDOMs

    Hi,
    Anyone know if Link aggregation combined with VLAN tagging works for LDOMs?
    Any links or references would be appreciated.....
    It would be very handy if each LDOM could have multiple interfaces on different VLANs....
    Regards,
    Daniel

    I agree with bzptlx. While you can have vswitch plumbed without net-dev, and then route traffic inside the control domain, so that you can utilize aggregation, it adds complexity, and in some environments it's just impossible.
    I would say that this is number 1 deficiency with LDOM's in general.

  • Site-Site VPN PIX501 and CISCO Router

    Hello Experts,
    I'm having a test lab at home, I configure a site-to-site vpn using Cisco PIX501 and CISCO2691 router, for the configurations i just some links on the internet because my background on VPN configuration is not too well, for the routers configuration i follow this link:
    www.firewall.cx/cisco-technical-knowledgebase/cisco-routers/867-cisco-router-site-to-site-ipsec-vpn.html
    and for the pIX configuration I just use the VPN wizard of pix. Done all the confgurations but ping is unsuccessful. Hope you can help me with this, don't know what needs to be done here (Troubleshooting).
    Attached here is my router's configuration, topology as well as the pix configuration. Hope you can help me w/ this. Thanks in advance.

    YES! IT FINALLY WORKS NOW! Here's the updated running-config
    : Saved
    PIX Version 7.2(2)
    hostname PIX
    domain-name aida.com
    enable password 2KFQnbNIdI.2KYOU encrypted
    names
    name 172.21.1.0 network2 description n2
    interface Ethernet0
    speed 100
    duplex full
    nameif OUTSIDE
    security-level 0
    ip address 1.1.1.1 255.255.255.252
    interface Ethernet1
    nameif INSIDE
    security-level 100
    ip address 192.168.1.1 255.255.255.0
    interface Ethernet2
    shutdown
    no nameif
    no security-level
    no ip address
    interface Ethernet3
    shutdown
    no nameif
    no security-level
    no ip address
    interface Ethernet4
    shutdown
    no nameif
    no security-level
    no ip address
    passwd 2KFQnbNIdI.2KYOU encrypted
    ftp mode passive
    dns server-group DefaultDNS
    domain-name aida.com
    access-list TO_ENCRYPT_TRAFFIC extended permit ip 192.168.1.0 255.255.255.0 network2 255.255.255.0
    access-list nonat extended permit ip 192.168.1.0 255.255.255.0 network2 255.255.255.0
    pager lines 24
    mtu OUTSIDE 1500
    mtu INSIDE 1500
    no failover
    icmp unreachable rate-limit 1 burst-size 1
    asdm image flash:/asdm-524.bin
    no asdm history enable
    arp timeout 14400
    global (OUTSIDE) 1 interface
    nat (INSIDE) 0 access-list nonat
    nat (INSIDE) 1 192.168.1.0 255.255.255.0
    route OUTSIDE 0.0.0.0 0.0.0.0 1.1.1.1 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
    username mark password MwHKvxGV7kdXuSQG encrypted
    http server enable
    http 192.168.1.3 255.255.255.255 INSIDE
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set MYSET esp-3des esp-sha-hmac
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto map MYMAP 10 match address TO_ENCRYPT_TRAFFIC
    crypto map MYMAP 10 set peer 2.2.2.2
    crypto map MYMAP 10 set transform-set MYSET
    crypto map MYMAP interface OUTSIDE
    crypto isakmp enable OUTSIDE
    crypto isakmp policy 1
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    tunnel-group 2.2.2.2 type ipsec-l2l
    tunnel-group 2.2.2.2 ipsec-attributes
    pre-shared-key *
    telnet timeout 5
    ssh timeout 5
    console timeout 0
    prompt hostname context
    Cryptochecksum:8491323562e3f1a86ccd4334cd1d37f6
    : end
    ROUTER:
    R9#sh run
    Building configuration...
    Current configuration : 3313 bytes
    version 12.4
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname R9
    boot-start-marker
    boot-end-marker
    aaa new-model
    aaa authentication login default local
    aaa authorization config-commands
    aaa authorization exec default local
    aaa session-id common
    resource policy
    memory-size iomem 5
    ip cef
    no ip domain lookup
    ip domain name aida.com
    ip ssh version 2
    crypto pki trustpoint TP-self-signed-998521732
    enrollment selfsigned
    subject-name cn=IOS-Self-Signed-Certificate-998521732
    revocation-check none
    rsakeypair TP-self-signed-998521732
    crypto pki certificate chain TP-self-signed-998521732
    A75B9F04 E17B5692 35947CAC 0783AD36 A3894A64 FB6CE1AB 1E3069D3
      A818A71C 00D968FE 3AA7463D BA3B4DE8 035033D5 0CA458F3 635005C3 FB543661
      9EE305FF 63
      quit
    username mark privilege 15 secret 5 $1$BTWy$PNE9BFeWm1SiRa/PiO9Ak/
    crypto isakmp policy 1
    encr 3des
    authentication pre-share
    group 2
    crypto isakmp key cisco address 1.1.1.1 255.255.255.252
    crypto ipsec transform-set MYSET esp-3des esp-sha-hmac
    crypto map MYMAP 10 ipsec-isakmp
    set peer 1.1.1.1
    set transform-set MYSET
    match address TO_ENCRYPT_TRAFFIC
    interface FastEthernet0/0
    ip address 2.2.2.2 255.255.255.252
    ip nat outside
    ip virtual-reassembly
    duplex auto
    speed auto
    crypto map MYMAP
    interface FastEthernet0/1
    ip address 172.21.1.1 255.255.255.0
    ip nat inside
    ip virtual-reassembly
    duplex auto
    speed auto
    ip route 0.0.0.0 0.0.0.0 2.2.2.1
    ip http server
    ip http authentication local
    ip http secure-server
    ip nat inside source list NAT_IP interface FastEthernet0/0 overload
    ip access-list extended NAT_IP
    deny   ip 172.21.1.0 0.0.0.255 192.168.1.0 0.0.0.255
    permit ip 172.21.1.0 0.0.0.255 any
    ip access-list extended TO_ENCRYPT_TRAFFIC
    permit ip 172.21.1.0 0.0.0.255 192.168.1.0 0.0.0.255
    control-plane
    line con 0
    exec-timeout 0 0
    logging synchronous
    line aux 0
    line vty 0 4
    transport input ssh
    end

  • Fast EtherChannel between Catalyst 3750 and 2821 Router

    Hi Guys
    I'm trying to setup a Fast EtherChannel between a cat3750-smi and a 2821 router that consists of only 2 links.
    I am following instructions per TAC, but I'm getting an error along the way;
    On the cat3750:
    interface port-channel 1
    no switchport
    Command Rejected: Not a convertable port
    Can anyone help???
    Also... do the IP Addresses for the EtherChannel need to be the same for both port-channels? Or do I assign the switch like 192.168.1.1 and the router 192.168.1.2 ?
    Thanks!
    Adam

    Hi Adam,
    The ip address cannot be same but it should belong to same subnet. So one side 192.168.1.1 and other side 192.168.1.2 will work fine.
    Its better to convert your layer 2 port as a layer port fist so what you do the port which you want to be port channel go that that interface and convert with "switchport" command
    once it is a layer 3 port configure with channel group and automatically layer 3 port channel will be created and you can sssign an ip address then.
    Just give a try and update if it works.
    Regards,
    Ankur

  • Trouble with Qwest DSL and wireless router

    Just got Qwest DSL yesterday. Connected the Actiontec M1000 modem directly to our IMac and things worked fine. Unfortunately, our office doesn't have a phone line and the permanent home of the modem is going to be elsewhere in the house. I tried to connect our D-Link wireless router WBR-2310 Rangebooster G to the Actiontec, phone jack--ethernet cable---actiontec---ethernet cable---d-link wan jack. Airport can "see" the wireless network we had setup before we switched to qwest dsl, but cannot connect to the internet.
    I'm assuming there is communication problem between the dsl modem and wireless router.
    How should my network settings be changed? Do I need to reconfigure the modem, or the wireless router, or both?

    {quote}
    Now, I must say that the 3mbps download speed I'm apparently paying for has never been achieved. The fastest I got was 1.4mbps when hardwired. Now with the wireless I'm only around 750 kbps. I'm only twenty feet away and one wall from the router. Any suggestions on increasing this performance?
    Very few sites can actually send you 3mb/s. You can test your connection here:
    http://www.speakeasy.net/speedtest/
    or here:
    http://speedtest.net/
    If your speeds don't seem to be inline then you will have to deal with your broadband provider.
    At 54mb/s your wireless is not the bottleneck, the internet is.
    I'm getting 6mb DSL and it tests perfect, but I wanted the extra speed because I'm running 6 or 8 machines online at all times, and you usually get a faster upload speed with the deal. This can be very important for sharing files and sending emails with attachments, etc.

  • Wireless printer keeps linking up with neighbors router

    My wireless printer keeps linking with my neighbors router when I turn it on, even though it's sitting right next to my router. If I ask my neighbor to turn his router off then my printer will link with my router. What's happening here and how can I fix it?

    You can try to set the security on your router and input all the wireless settings on your printer manually. So it will not keep on linking with your neighbors wireless network.

  • Problem of PCI express link width and speed

    hello,
    I instantiate the pci express core v1.7 into a pci express endpoint and the core was configured as GEN I x8 or GEN II x4. By using the example design Xilinx offered in the ipcore dir, I could read and write device by PIO mode.
    However, when I check the device’s link width and speed by using lspci –vvvv in Linux, I found that no matter what configurations I set, the device link is always trained as GEN I x1, which means the throughput of device, reduce 8 times. May the most important problem is that all logic in the user layer upon transaction layer are written at 250MHz, and if link width and speed are limited 2.5G/T and x1, I need to change user logic circuit which is a huge work.
    So my question is how to change the PCI express link width and speed in OS side, or I need to change a new motherboard?
    (I guess it related with motherboard, and I check that the PCI express slot in motherboard support GEN II X16. Another issue, when I insert a PCI express GEN II x8 device, the device is also trained as GEN I x1).
    lscpi -vvvv
    01:00.0 RAM memory: Xilinx Corporation Device 6018
    Subsystem: Xilinx Corporation Device 0007
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin A routed to IRQ 16
    Region 0: Memory at dfcff800 (32-bit, non-prefetchable) [size=2K]
    Region 1: Memory at de000000 (32-bit, non-prefetchable) [size=16M]
    Capabilities: [40] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [48] MSI: Enable- Count=1/1 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    Capabilities: [60] Express (v2) Endpoint, MSI 01
    DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
    ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
    RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
    LnkCap: Port #0, Speed 2.5GT/s, Width x8, ASPM L0s, Latency L0 unlimited, L1 unlimited
    ClockPM- Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
    DevCap2: Completion Timeout: Range B, TimeoutDis-
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
    LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
    EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
    Capabilities: [100 v1] Device Serial Number 00-00-00-01-01-00-0a-35
    Kernel driver in use: card

    I also have this issue of the user_link_up is high and everything looks good but the LnkSta widht is 1x. did you ever get any guidance about this?
     

Maybe you are looking for