Wrv210 How to use vlan feature?

  Hi people.
I have 1 WRV210 Wireless Router, this device have the vlan feature, I have read about this feature that u could have separate networks example:
192.168.10.X net-1
10.0.8.x net-2
My ISP use pppoe, is working, but I dont know how to setup 2 networks with this device? The manual just tell u how to create vlans but is all nothing more.
Can someone help me with this?
Suppose that I have 1 computer wired and some clients wireless, I want to have net-1 for my wired clients and net-2 for my wireless clients, but separate and using both networks the same ISP.
Thanks!!!

Go to the Setup page of the wrv210. On the sub-tab click on Vlan. Select enable on the Port-Based Vlan.  Check the box of the desired vlan that you want to assign to the port and ssid.

Similar Messages

  • How to use autosuggest feature in adf?

    how to use autosuggest feature in adf?

    You can refer below link
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/004-auto-suggest-169120.pdf
    Thanks
    AJ

  • Can someone tell me please how to use the features...

    Hi all,
    Can someone tell me please how to use the features on the HS-47 headset?
    That is, what functions does the button control and how many presses of the button for each function, etc?
    The headset was as supplied with my 6200.
    I've tried looking for a user guide but I don't think there is one.
    Many thanks,
    Steve.

    I think it's pretty basic.
    If you are listening to music on your phone, it should automatically mute it when a call comes in. A basic press of the call answer / end button should then do just that.
    Have a go! You could try experimenting with a quick double press, that may recall the last number you dialled, but otherwise that's probably it.

  • How to use highlighter feature

    I have Adobe Acrobat Professional 8. I want to search an existing document and have it automatically highlight all words in my search and save the document with those words highlighted so I can print it that way.
    I see how to highlight them one at a time but there must be a way to have it highlight all the words for me?
    Rae

    Hi,
    I provide technical support for all adobe acrobat related questions... even those that adobe support fails to answer... if your work is interrupted because you have problems with how to use acrobat features or its giving you errors or its crashing on you... just let me know... I charge very less and support is provided!

  • I am using Photoshop CC2014 15.00.  In the pop-up menu for the Fill command there is a place for Scripted patterns.  Within that part, the tree and the picture frame are grayed. Why?   I've seen demonstrations on how to use the feature but mine doesn't wo

    I am using Photoshop CC2014 15.00.  In the pop-up menu for the Fill command there is a place for Scripted patterns.  Within that part, the tree and the picture frame are grayed.
    Why?   I've seen demonstrations on how to use the feature but mine doesn't work.  I checked the updates and I have the current version.
    Thanks.      LM

    I am running CC 2014.2.1 and I've updated to Yosemite. Not seeing tree or frame as an option in the menu. Coworker still on Mavericks has it.

  • Can you please help me figure out my i phone and how to use the features

    i need some help on figuring out my phone can you please help me figure out how to use my i phone and the blue tooth features to listen to music or how can a friend or a relative send me songs for me to listen to.....                   

    To listen to music with a headset or earbuds via bluetooth requires a bluetooth stereo headset.
    File transfer via bluetooth is not supported. A friend or relative can purchase music for you via the iTunes music store with an iTunes store gift card or by sending you the music gift via email from iTunes.

  • Is there a place summarizing How To use new features?

    I upgraded to Lion, but now I'm searching everywhere ho to use each new feature.
    Apple's "Lion"'s page is just showing what features are new but now how to use/activate them.
    Any place where I can go to see them all explained as to how to use, implement, activate?

    http://www.apple.com/macosx/whats-new/#video-lion

  • How to use the feature of ajax in visual web jsf

    Hello,everyone!
    I want to use the feature of ajax in visual web jsf,but the program encountered a error. I want refresh the dropdownlist once the javascript captured the refresh message,they both behaved asynchronously. However, the textField1 rendered with a blank box,while the dropDown1 had no change. The code as follows:
    <jsp:root version="2.1" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
    <webuijsf:page binding="#{Page1.page1}" id="page1">
    <webuijsf:html binding="#{Page1.html1}" id="html1">
    <webuijsf:head binding="#{Page1.head1}" id="head1">
    <webuijsf:link binding="#{Page1.link1}" id="link1" url="/resources/stylesheet.css"/>
    <webuijsf:script>
    var processEvents = {                                                
    update: function(props) {
    var combo=document.getElementById("form1:dropDown1");
    combo.refresh();
    // Subscribe to refresh event.
    function refreshme(){
    var dom=document.getElementById("form1:textField1");
    dom.refresh();
    dojo.subscribe(webui.suntheme.widget.textField.event.refresh.endTopic, processEvents, "update");
    </webuijsf:script>
    </webuijsf:head>
    <webuijsf:body binding="#{Page1.body1}" id="body1" style="-rave-layout: grid">
    <webuijsf:form binding="#{Page1.form1}" id="form1">
    <webuijsf:textField binding="#{Page1.textField1}" id="textField1" onBlur="refreshme();"
    style="position: absolute; left: 168px; top: 144px" valueChangeListenerExpression="#{Page1.textField1_processValueChange}"/>
    <webuijsf:textField binding="#{Page1.textField2}" id="textField2" style="left: 168px; top: 96px; position: absolute"/>
    <webuijsf:dropDown binding="#{Page1.dropDown1}" id="dropDown1" items="#{Page1.dropDown1DefaultOptions.options}" style="position: absolute; left: 192px; top: 216px"/>
    </webuijsf:form>
    </webuijsf:body>
    </webuijsf:html>
    </webuijsf:page>
    </f:view>
    </jsp:root>
    /**********************************java******************************************/
    the function textField1_processValueChange didn't been invoked
    public void textField1_processValueChange(ValueChangeEvent event) {
    DropDown dd=getDropDown1();
    Option op1=new Option();
    String addText=(String)getTextField1().getText();
    op1.setLabel(addText);
    op1.setTooltip("tooptip");
    op1.setValue(addText);
    ArrayList <Option> l=null;
    Iterator <Option> i = dd.getListItems();
    while(i.hasNext()){
    l.add(i.next());
    l.add(op1);
    dd.setItems(l);
    thanks In advance all of your replies.

    Hi there,
    Take a look at this, will help you
    http://developers.sun.com/jscreator/learning/tutorials/2/textcompletion.html
    Thanks
    K

  • How to use search feature in my JSP?

    Hi all,
    In my struts application, there is one Jsp page which receives some keyword and based on that keyword it searches the local file system(all diskslike C:\,D:\,E:\.....). how to implement this feature and should display only the latest 10 records. How to implement this.Help me with step-by-step procedure/code help is highly appreciated.
    Thanks a lot

    Are you searching by the content of a file, or by the name of the file? If you're searching by content..it seems like a search on all the disks will take a very long time.
    Here's some rough code:
    ArrayList<File> list = new ArrayList();
       File startdir =new File("C:\\");
       recurseFiles(startdir, keyword, list);
       public static final int MAXSIZE = 10;
      private void recurseFiles(File currfile, String keyword, ArrayList<File> list){
           if (currfile.isDirectory()){
                 File[] fileset = currfile.listFiles();
                 for (int i =0; i<fileset.length; i ++){
                         recurseFiles(fileset, keyword, list);
    }else{
    try{
    boolean found=false;
    BufferedReader testread = new BufferedReader(new InputStreamReader(new FileInputStream(currfile)));
    while (testread.ready() && !found){
    String currline = testread.readLine();
    if (currline.indexOf(keyword)!=-1) found = true;
    testread.close();
    if (found){
    int loc = 0;
    //most recently modified files are at the end.
    while (list.size() > loc && list.get(loc).lastModified() <currfile.lastModified()
    loc++;
    list.add(loc, currfile);
    if (list.size() > MAXSIZE) list.remove(0);
    That code should work, I think. I'm a little skeptical of the while loop--can someone verify that?

  • How to use RCIEV feature to trigger mail to a particular mail id in M0001

    Hi,
    I'm trying to trigger mail for any marital status change in personal data infotype for employee through dynamic action. Kindly help me in using RCIEV feature in M001 feature in detail for triggering mail to a manager other than administrator.
    Thanks,
    Kalai.

    Check this documentation.
    RCIEV  Defining a Distribution List or Mail Address
       you can define a feature that sets the parameters for a
        mail to be sent when changes are made to an infotype record. In the
        standard system, this involves feature M0001. You can also specify a
        feature within this feature to determine possible recipients of the mail
        according to the control values in the organizational assignment.
      Use
        Mail connection for master data infotype changes for employees and
        applicants.
      Procedure
        The return matrix of the feature has the following structure: X-VVVVVVVV
        with the following meanings:
        o   X - Indicator 'M' for mail or 'V' for distribution lists
        o   VVVVVVVV - Valid mailing name or distribution list, which is stored
                       in a shared folder in SAPoffice (transaction so04).
      See also
        Feature TEXT1

  • How to Use Cutaway Feature in iMovie '11

    Hi.
    I am attempting to make a farewell movie for a retiring colleague. I have video and digital photos, but here is the clincher: My video is of people talking and it is boring to watch. Therefore, I want to run video and photo "slides" in the same project, In addition, I want to have background music.
    How can I transition from the individuals talking (the video) to photos, back to video? All the while when the photos are shown I want the audio from the video to still be heard. (in addition to my changing background music)
    Can I do this? Meaning is this level of editing possible with imovie. And of course how?
    I am a fast learner and can pick up these type of things easily just need a few tips.
    I am concerned that I will have to some how rip the audio from all of my video clips and make one big file then just cut and splice the video and pictures I want to see in the order I want. If I could manage to do that how difficult would it be to match the audio with the visual.
    I hope you understand. And i hope some of you experts can help.

    Yes, this is quite simple.
    First go to iMovie/Preferences and make sure the Advanced Tools are enabled.
    Next drag your photo (or a different video clip) onto the video clip in the project and drop it on the frame where you want the photo to start. A pop-up menu will appear. Choose CUTAWAY.
    Here is a [Tutorial by Ken Stone on the Cutaway feature|http://www.kenstone.net/fcphomepage/imovie_09stone.html#cutaway%20pip] for iMovie 09. It hasn't changed very much in iMovie 11, so it may be helpful.

  • How to use new feature "New Picture"?

    SDDM 4.1.0.866 has a new feature ("New Picture"), icon to the right of "New Note" icon. Using this icon, I can insert an external image in a relational diagram, but when I go through the same motions on a logical diagram, the image does not show up. Am I not using the new feature correctly, or does it apply only to relational diagrams? Thanks.

    Hi Patrick,
    it should be possible to add image to diagrams in all models. It appears there is a problem for diagrams in logical model.
    Thanks for reporting the problem, I logged a bug.
    Philip

  • Upgraded to ios4, confused how to used ipod feature now?

    after recently installing the new software im now confused as to how i can use my i pod. When i go into it the 'songs' it says i have none, all my music is still available to view as albums but you seem to have to create playlists from the 'songs' section. i used to just go onto 'all songs' press shuffle and let it play through but now i only have the option to do 1 artist at a time.
    if anyone could help me out that would be great.
    Thank you
    Helen

    Try resetting the iPhone with it being disconnected from the computer. Hold down the sleep/wake button and home button until you receive the apple logo and then let go.
    This happened to me with photos.
    Hope this helps!!

  • How to use DPS features like Folio Overlays while exporting to SWF?

    I'm creating an interactive magazine in InDesign, it's been decided that the magazine will be exported to SWF and uploaded to our company website for viewing by the public. I want things like slideshows and scrollabe text frames. I saw that InDesign had an update to include some DPS features like the Folio Overlays, so I applied a Slideshow overlay and a Scrollable Frame overlay but neither of them seem to work after I export to SWF. I still want to have slideshows and scrollable frames, how can I still have them while exporting to SWF?

    DPS is for mobile devices through Adobe’s Digital Publishing Suite. The reason SWF is dead is because it’s pretty much incompatible with mobile devices. If you want to go to the web and keep things interactive you really need to be looking HTML5 / CSS3 type of websites. In5, which I mentioned in my earlier response will give you quite bit of help in going from InDesign to web, but I would strongly suggest you take a look at Muse if you’re not comfortable with HTML and CSS.

  • Does anyone here understand how to use this feature??

    Hi I think I understand W7 and Toshiba. Some times I have my doubts. I think I have this figured out??? I'm wondering how seniors have even a 50 -50 chance of surviving all this. Good morning Vietnam.
    PS Not expecting a lot of input on this thread However I welcome all replies to my threads
    Dokie!!
    I Love my Satellite L775D-S7222 Laptop. Some days you're the windshield, Some days you're the bug. The Computer world is crazy. If you have answers to computer problems, pass them forward.
    Attachments:
    fnkeys.zip ‏1185 KB

    Brandon,
    you will not have to do any importing in GarageBand. Intalling Mainstage will extent GarageBands Loop Library and Instruments Library.
    After you installed MainStage the additional loops and Instruments will show in GarageBand just like all other Loops. you will simply see more loops.
    For example:
    or:

Maybe you are looking for

  • Changing "file type" in Link Information Window (CS3)

    Hola, I am having a problem in Indesign (CS3), and I was wondering if anyone here might be able to help. I'm a student updating an older .INDD file for a 47 page book. The pages were all updated as .AI files, but for some reason 3 of the pages in our

  • My printer's error messages are in French.

    How do I change the printer's language from French to English.  I had a problem with the flashing on/off button and a message in French that there was a paper jam.  There was no jam, and the printer would run paper through blank. Eventually, I solved

  • Capturing the time for rendering the JSFscreen.

    I have a JSF application running on WAS6.1. We have some performance issues. The JSF rendering is taking long time to render the page. All the database operation ie querying the database and leaving the prerender method is happening so fast. So how c

  • How to pass jv for ED missing in excise invoice

    Hi Experts Could you pls tell me how to pass ED( Excise Duty ) entry through JV ( J1ih). Case: When the outgoing Excise Invoice was created one of the excise Duty was missing. Now i want to pass the ED against that invoice through JV . N pls also sug

  • Quantity contracts for a cumulative collection of materials

    We have contracts that specify the cumulative quantity of a collection of products.  The contract is expressed this way due to the variability of the yield in the manufacturing process and the customers demand.  Therefore using multiple lines in the