Can I create a wireless link between two 871W routers?

Hi all,
The subject says it all. Can I link two 871W routers (ADVIPSERVICES IOS) wirelessly, in either a bridged or routed configuration?
I'm running 12.4(11)T1, and the only station-role they seem to support is root:
r1(config-if)#station-role ?
root Root access point
Any help most gratefully received!
many thanks,
alec

No. With 871W routers you cannot create a Bridge link. 871W routers support the following roles.
a) Root access point
b) Universal client mode
c) Support of Workgroup bridge clients
For information on the roles supported on the ISRs read, http://www.cisco.com/en/US/products/ps5853/products_configuration_guide_chapter09186a008067e8e9.html#wp1101651

Similar Messages

  • How to secure IPv6 P2P Link between two distinguished Routers using ospfv3

    I have two Routers - one Catalyst 6500 Sup720 and one Nexus 7009 SUP2-E - connected
    via ospfv3 P2P Link using  /64 IPv6 Networkaddresses. What must be configured in order to secure this P2P Link against possible security attacks ! Any example configuration available ?
    Greetings Manfred

    Hi Manfred,
    You should configure authentication on both of the P2P interfaces/ SVIs:
    int te1/0/1
       desc 6500 uplink
       ipv6 ospf authentication ipsec spi 500 sha1 <40_bit_hash>
    int te1/0/1
       desc 7009 uplink
       ipv6 ospf authentication ipsec spi 500 sha1 <40_bit_hash>
    ...ensure that either end of the link have same spi index value and obviously hash value too.
    cheers,
    Seb.

  • View Link between two query views

    Hi is it possible to create a view link between two views having the where clause bind variables.
    How you set the bind variables at the run time for the View objects. It is giving hard time for me to use the Master view in the XmlData bean to generate the Xml document.
    I am able to set the Master views bind variables, but for view link destination view
    where clause bind variables are not able to set ( link object link condition bind variables are binded run time but the views where chause bind variables of destination view are unable to setand bind)
    Thanks
    null

    Easiest way to do this is to add additional transient attributes to your master view object, and then include those additional transient attributes in the list of source attributes for your view link. This way, you can get BC4J to automatically refer to their values with no additional code on your part.

  • Create view link between two view objects (from programmatic data source)

    Hi Experts,
    Can we create a link between two view objects (they are created from programmatic datasource ; not from either entity or sql query). If yes how to create the link; ( i mean the like attributes?)
    I would also like to drag and drop that in my page so that i can see as top master form and the below child table. Assume in my program i will be only have one master object and many child objects.
    Any hits or idea pls.
    -t

    Easiest way to do this is to add additional transient attributes to your master view object, and then include those additional transient attributes in the list of source attributes for your view link. This way, you can get BC4J to automatically refer to their values with no additional code on your part.

  • How to create Doc Link between two document numbers?

    Hi Folks,
    I have two document numbers with different transaction type.
    I want to create a Document link between these two documents, i.e. each documents should come in Dock Flow of each other.
    How to acheive this target.
    I tried to do it by using FM CRM_DOC_FLOW_MAINTAIN_OW, but not able to achieve it.
    So please tell me how to do this thing.
    Regards
    PG

    Hi PG,
    The FM CRM_DOC_FLOW_MAINTAIN_OW should work , I am not sure what parameters you are passing. Any way you can use the CRM_ORDER_MAINTAIN as well which will eventually call CRM_DOC_FLOW_MAINTAIN_OW . Have a look of the sample code, This will give you some idea
    lw_input_field_names-fieldname  = 'GUID'.
          INSERT lw_input_field_names INTO TABLE lt_input_field_names.
          CLEAR lw_input_fields.
          lw_input_fields-ref_kind    = gc_object_kind-orderadm_h.
          lw_input_fields-objectname  = gc_object_name-orderadm_h.
          lw_input_fields-ref_guid    = lw_orderadm_h1-guid.
          lw_input_fields-field_names = lt_input_field_names.
          INSERT lw_input_fields INTO TABLE lt_input_fields.
          lw_doc_link1-objkey_a   = lw_orderadm_h-guid.
          lw_doc_link1-brel_kind  = gc_brel_kind-header_header.
          lw_doc_link1-brel_mode  = gc_mode-create.
          lw_doc_link1-reltype    = gc_bin_rel_type-predecessor_successor.
          INSERT lw_doc_link1 INTO TABLE lt_doc_link1.
          lw_doc_flow1-ref_guid   = lw_orderadm_h1-guid.
          lw_doc_flow1-ref_kind   = gc_object_kind-orderadm_h.
          lw_doc_flow1-doc_link   = lt_doc_link1.
          INSERT lw_doc_flow1 INTO TABLE lt_doc_flow1.
          CLEAR lw_input_fields.
          REFRESH lt_doc_link1.
          lw_input_fields-ref_kind    = gc_object_kind-orderadm_i.
          lw_input_fields-objectname  = gc_object_name-orderadm_i.
          lw_input_fields-ref_guid    = lw_orderadm_i1-guid.
          lw_input_fields-field_names = lt_input_field_names.
          INSERT lw_input_fields INTO TABLE lt_input_fields.
          lw_doc_link1-objkey_a   = lw_orderadm_i-guid.
          lw_doc_link1-brel_kind  = gc_brel_kind-item_item.
          lw_doc_link1-brel_mode  = gc_mode-create.
          lw_doc_link1-reltype    = gc_bin_rel_type-predecessor_successor.
          INSERT lw_doc_link1 INTO TABLE lt_doc_link1.
          lw_doc_flow1-ref_guid   = lw_orderadm_i1-guid.
          lw_doc_flow1-ref_kind   = gc_object_kind-orderadm_i.
          lw_doc_flow1-doc_link   = lt_doc_link1.
          INSERT lw_doc_flow1 INTO TABLE lt_doc_flow1.
          CALL FUNCTION 'CRM_ORDER_MAINTAIN'
            CHANGING
              ct_orderadm_h     = lt_orderadm_h1
              ct_input_fields   = lt_input_fields
              ct_doc_flow       = lt_doc_flow1
            EXCEPTIONS
              error_occurred    = 1
              document_locked   = 2
              no_change_allowed = 3
              no_authority      = 4
              OTHERS            = 5.
          IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
            RAISE error_occurred .
          ENDIF.
    Hope this will help.
    Thanks,
    Vikash.

  • Wireless Bridging between two 1242 AP's

    Hello All,
    I have a trailer at a client that I'am trying to connect to the main building via a wireless bridge using two 1242 AP's. I'am trunking on the connection to each AP using dot1q. I don't mind all the vlans going to the trailer so I'am not limiting the vlans. What do I have to do on the AP's to get this to work exactly? Are there any guides on this? thanks
    Jason

    Hi Jason,
    If you're unfamiliar with the CLI, you should probably use the GUI. Here's what's needed to establish a bridge link between two APs:
    1. Only one SSID is needed, regardless of the number of VLANs
    2. The SSID should be placed in the native VLAN (as only one VLAN can be associate to an SSID)
    3. Encryption for the link should be attached to the native VLAN
    4. The SSID should be configured for infrastructure mode only
    5. Every other VLAN should be created, but not assigned to anything.
    6. The radio role/mode must be set to root bridge on side and non-root bridge on the other side
    The critical realization is that only one SSID is used. It's perhaps what's most confusing about bridges. To my knowledge, you need to configure every VLAN you want to traverse the link. I do not know of any way to simply allow all VLANs.
    Also, know that the channel can be set on the root side (and should be hard set to channel 1, 6, or 11 if using 2.4GHz), but you cannot configure the channel on the non-root. This is because the non-root scans all channels and matches to the root.
    Let me know if you need assistance with any of this. I or someone else on the boards would be glad to help.
    Jeff

  • Link Between two worksheets in Discoverer

    Hi...
    I'm trying to create a link between two worksheets without success.
    What I have is a 'General Ledger' worksheet which lists the journal source for a particular account code that is selected by the user via a parameter. Say the journal source is Accounts Payable invoices, what I want to do is have another worksheet which is 'Accounts Payable' and on that worksheet I want to be able to list all the invoices that make up the journal total on the 'General Ledger' worksheet.
    I have tried to create a link using a sub query condition but when I run the report, the first part 'General Ledger' works fine but when I click on the 'Accounts Payable', I get a "Invalid Number" error message.
    I am going to need to create these type of links for various reports.
    I would be very grateful if anyone can please advise on how to create the link.
    Thanks

    I think you're on the right track with the subquery. So, the wrong number error must be related to the format of the columsn you use for the subquery.
    Alternatively, if the account number you've created the parameter for in sheet 1, you can use the same parameter again for sheet 2 (then check "only one value for all sheets" for that parameter). But this obviously only works if that account number is in the second sheet too...

  • Change or delete the docflow link between two existing documents

    Hi All,
    Is there any FM or soulution to change the doc flow link between two documents .
    For ex .. i have document A and document B , and created a doc flow link from A to B , Now i have to change the succeeding document  to C
    I have tried to modify the doc link ,but its not working using crm_order_maintain.I thought of deleting the link between A and B and then create a new link Between A and C , but deletion of link bewteen A and B is also not working.
    I have checked with FMs CRM_DOC_FLOW_DELETE_CHECK_EC and CRM_DOC_FLOW_DELETE_EC, followed by CRM_ORDER_SAVE AND COMMIT . i could not find any exception from this FMs , but still the doc link is not deleted.
    Pls share if you have any suggestions.
    Regards,
    Nithish

    Hello
    I wrote a report to delink items from document flow. I uploaded it [here|http://wiki.sdn.sap.com/wiki/display/CRM/Removelinksfromdocumentflow].
    Please, use with caution and always perform careful tests before you run it in a production envinronment.
    Hope it helps
    Joaquin
    Edited by: Joaquin Fornas on Nov 15, 2011 11:49 AM

  • Can I Create A Symbolic Link to folders stored on an SMB Share folder?

    Hello,
    I am very new to Unix and was hoping that someone could point me in the right direction with regards to Symbolic links and an SMB share folder ....
    Have purchased an ext. LAN Drive enclosure (http://www.macpower.com.tw/products/hdd3/pleiades/pd_usblan) which connects to my wireless router via ethernet like my G5 (main Mac) - our iBook connects via Airport. I have copied all my general documents/files to the SMB share folder on the ext. drive so that I can access them from the G5 and also the iBook.
    However I'd also like to be able to store my actual Mail folder (/Users/Mark/Library/Mail/), , Safari folder (/Users/Mark/Library/Safari) + my Address Book and other folders sitting in the Application Support folder on my SMB share so all important docs/folders are in the one place. I've tried storing these folders on the SMB share and putting an Alias to these back in Users/Mark/Library/Mail etc but of course an Alias doesn't work.
    Question 1: Can I create a symbolic link to these files if these are stored on an SMB share folder? If so, could you please tell me exactly what I'd need to type into Terminal? My SMB Share path is smb://STORAGE-XXXX/MARK
    I have copied my iPhoto library and iTunes library to the SMB share and are working fine.
    Question 2: Is it possible/worth attempting to move my whole home folder to the SMB share folder? Ideally, I'd like to be able to access my Mail from the iBook as well. If I could log into either the G5 or the iBook and access my latest Mail, Address Book and other Application Settings, that would be perfect. Would this be possible?
    Thanks
    Mark.
    Dual 1.8GHz G5 (Rev.B), 2Gig RAM, 9600XT   Mac OS X (10.4)  

    Dear Mark,
    Yes you can. The command to create a link will look something like this:
    $ ln -s thisFolder /Users/mark/thatFolder
    I did this while I was hosting a microsoft based game. This put all of the players into a common directory.
    SMB just resolved the link and everything worked fine.
    However, as I understand it, some other applications do NOT work very well with links. As I have NOT tried it with other applications, I fear I can be of NO help to you in this matter.
    The only way to find out which applications work with links is to try them and see what happens.
    Best of luck,
    Kurt

  • Linking between two workspaces

    Good afternoon all,
    I was wondering if there was anyway for me to link between two workspaces on the same schema.
    What I currently have set up is two workspaces (1 and 2). I have done a lot of work on 1 and built a Single Sign On application to manage my applications. Workspace 2 was created for a separate team, but I would like some sort of authentication. I was wondering if there was anyway for me to leverage my existing app in Workspace 1 to authenticate for applications in Workspace 2.
    My guess is that it's not possible, but I figured I might as well ask around to see if there is some weird hack around it.
    Thanks in advance,
    Ivan

    Alright I'll post it on there. Figured that InDesign users would know more about the links and how to set them up. Thanks for the advice.

  • How can I insert a vertical line  between two underlined unfilled with text lines.  I am trying to construct an invoice and I need a break.  If I try any of the shapes or inset functions it eliminates my underlined lines and shifts the whole document.

    I am trying to construct an invoice.  How can I install a vertical line between two or more underlined lines to create a break.  I have tried the insert, shapes and nothing works.  If I try any of the functions the whole document shifts to the right and I loose some of the lines.  Is there a work around, or is I work not able to do what I want?   
    Thanks
    Armand

    It sounds as though you may have "Object Causes Wrap" activated for the Line Shape. This will push other content away.
    See the Wrap Inspector.
    Jerry

  • Link between two or more reports

    Hi All,
    I want to make a link between two Hyperion Financial Reports. I'm working on HFR 9.3.1 version.
    For example :-
    There must be an option in report, like a hyperlink to open another report. After a click on the link it will open the linked report.
    I tried one option "Add releated contents" but that works only on grid which are having cell values but what I'm looking is to give a link on text and from that text link user will able to navigate.
    Regards,

    Sorry I just thought of a workaround
    You do have to use related content on a data value but you can use formatting to hide everything but the link. Use the REPLACE tab within the cell format to relace the data value with a text string (what you want your URL to display as). If you want it as a menu then you could do this in a seperate grid altogether to save you having to mess with your actual report grid too much.
    Hope this helps
    Stuart

  • How can I make a server differ between two or more clients?

    How can I make a server differ between two or more clients?
    The clients can connect and talk to the server fine, but how can I make the server talk to one, two or all clients? i.e. what would be a good way to implement this?
    Currently, the server listens for connections like this:
    while (listening) {
    try {
    new ServerThread(this, serverSocket.accept()).start();
    I guess one way would be to add the ServerThreads to a Hashtable with the client ID as key, and then get the ServerThread with the proper client ID, but this seems unnecessary complicated. Any ideas?

    Complicated was perhaps the wrong word, I should have
    written something like it doesn't "feel" right. Or is
    this a common and good way to solve communication
    between a server and multiple clients?Thats pretty much how I do it. I normally use an array or ArrayList of Sockets instead of HashTable, with [0] being the first player etc.... Then you can communicate with exactly who you want. If you want to send bytes to all of them, just send the same thing to each socket individually (or is there a better way to do this?).

  • Hello there - how can I share my iTunes library between two users on the same computer? I put the library in a shared folder between both and have selected this library on both as well, but when I update iTunes with music etc it only appears on one?

    Hello there - how can I share my iTunes library between two users on the same computer? I put the library in a shared folder between both and have selected this library on both as well, but when I update iTunes with music etc it only appears on one?

    Thank you Joe - I tried this but it's only showing a teensy amount of music - the stuff on the second users account as opposed to the giagntic library on the 'main' account. I actually went to a Genius Bar and they said that apple doesn't really want you to share music between accounts - parents don't want to hear their kids music etc. Which seemed strange, but it might be the case sadly   Thanks anyway!

  • Can I create a single PO for two company codes

    Hi
    Can I create a single PO for two company codes. Though I know that Company code is assigned at header level but still I know there is a setting in controlling which when activated two company codes under same controlling area can procure the goods under the same PO.But i forget from where to activate that message or control in config.
    Thanks

    Hi Lekhram,
    I'm just beginner so maybe I got the wrong end of the stick.
    If you order something that something must belong to a definite company > plant. How could possess two company the same thing at the same time (totally)?
    (companies are at the same organisational level - none of them is subject to the other).
    Maybe I'm mistaken.
    So I <b>guess</b> you can use only one company code for one PO.
    Controlling area & company code
    http://help.sap.com/saphelp_46c/helpdata/en/e5/077a704acd11d182b90000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/08/513f4b43b511d182b30000e829fbfe/frameset.htm
    Purchasing & organisation
    http://help.sap.com/saphelp_46c/helpdata/en/75/ee0a9555c811d189900000e8322d00/frameset.htm
    All the best
    Csaba

Maybe you are looking for

  • DNS Setup/View external website internally

    Greetings all - trying to set up a Mac server from scratch for the first time. Been managing one for a while but didn't actually set it up myself. I have the beginnings of DNS setup all squared away, but am still looking to figure out how to properly

  • Cant get up the screen to show contents of ipod in itunes

    computer recognises ipod in itunes and it downloads music fine, but it will not show me whats on my ipod, just shows me a page with ipod picture and support site?! this is once ive clicked on my ipod on the left hand side.

  • BIT fields in database

    How do I need to write an update query in order to insert / delete a database entry that includes a BIT field (Yes/No). I tried: "INSERT INTO table_name (string_field, BIT_field) VALUES('hello','true')" and "INSERT INTO table_name (string_field, BIT_

  • XSLT/xml transform & jar

    In EP6 SP2 there is an XSLT/xml transform api. Can somebody tell me what jar file is it in?

  • JSP & Crystal Reports Database Problem

    Hi all, I hava problem with refreshing the crystal report web viewer if the report retrieves data from DB. If I don't refresh the report, it shows the report with default parameters. But when I refresh the report (I mean viewer.refresh()) it gives an