Need help in setup vpn with IGMP enabled !

hi all
i hve cisco 2901 router and i want to setup vpn that allow IGMP ,
can somebody help me with it or at least sample configuration ?
can it be done from http gui ? or it is mandatory from cli ?
regards

Hello,
So you plan to send multicast traffic over the tunnel?
It could be possible to do it via both ways, thing is is harder to get assistance via GUI as for example I have no access to any router. I reply based on commands that I remember so CLI is a must.
I would recommend using a GRE tunnel to send the Multicast traffic through it
Looking for some Networking Assistance? 
Contact me directly at [email protected]
I will fix your problem ASAP.
Cheers,
Julio Carvajal Segura
http://laguiadelnetworking.com

Similar Messages

  • Need help setting up VPN with OS X Server 2.2

    I just bought OS X Server in the hopes that it would be a simpler way to set up VPN for use with my iPhone.  I've tried a couple third party VPN configuration tools before with older versions of OSX but was never able to get it working.  Now I'm running 10.8.2 and Server 2.2.  I've made some progress, but I'm not quite there yet.
    Here's what I have set up in the VPN window:
    And the user I created:
    The User services show that VPN is selected:
    I let the Server app configure my Airport Extreme, and it looks like it set up the port mapping:
    Here are my iPhone settings
    -Server is set to my iMac's public IP address assigned by my ISP
    -Password is the password I gave the user account
    When I turn the VPN on in the iPhone I get:
    "Connecting..."
    "Starting..."
    "Authenticating..."
    then an error:
    "VPN Connection
    Authentification failed."
    What am I missing?
    Thanks,
    Sean

    Hi,
    1701
    UDP
    L2TP
    l2f
    Mac OS X Server VPN service
    1723
    TCP
    PPTP
    pptp
    Mac OS X Server VPN service
    Try L2TP

  • Need help to setup iis with iisproxy.dll

    I have create an iisproxy.xml and i have this error in the iisproxy.dll when a try to access to the virtual directory of the portal :
    18:39:44 Global E-Init   IisProxy Extension 1.6.2.0 initializing.
    18:39:48 Global Init   E LoadFromFile(
    ?\D:\Inetpub\Scripts\IisProxy.xml ): XML Error 0x80070035 at line 0, char 0:
    in "(null)"
    The network path was not found.
    18:39:48 Global E-Init E Failed to load config file '
    ?\D:\Inetpub\Scripts\IisProxy.xml'.
    I have 2 directory in d:\inetpub :
    -Scripts with iisproxy.dll iisproxy.xml and iisproxy.pdb
    -IisProxy which is the virual folder for accessing to the portal.
    On Script i have check this :
    Read
    Execution permission : Execute
    Application pool : DefaultAppPool
    On IisProxy i have the same configuration except that
    the wildcard application map point to iisproxy.dll
    The iisproxy.xml look like this :
      <?xml version="1.0" encoding="utf-8" ?>
    <ISAPI-config version="1.6">
      <filter name="IisProxy filter" log-level="3" log-flags="0" debug-flags="0" priority="high" extension-url="/Scripts/IisProxy.dll" authentication="normal" remote-address="skip" />
      <extension name="IisProxy extension" log-level="3" log-flags="0" debug-flags="0" access="filter" />
    <mapping name="IisProxy samples" log-level="3" log-flags="0" debug-flags="0" keep-alive="true" use-continue="true" close-socket="true" close-socket-delay="1000" thread-count="100" max-socket-age="37">
    <mapping name="ep60sp2">
    <source>
      <protocol>http</protocol>
      <prefix>/irj</prefix>
      </source>
    <source>
      <protocol>http</protocol>
      <prefix>/logon</prefix>
      </source>
    <target>
      <protocol>http</protocol>
      <host>localhost</host>
      <port>50000</port>
      </target>
      </mapping>
      <compress-types min-size="1024">text/html, text/plain</compress-types>
      </mapping>
    <config>
    <source access="filter">
      <protocol>http</protocol>
      <host>localhost</host>
      <prefix>/IisProxy</prefix>
      </source>
      </config>
      </ISAPI-config>
    Using :
    Windows 2003
    MSXML 3 SP4
    IIS 6
    EP6SP11
    Regards, L.Mouillart

    I implemented SSO succesfully with EP 6 SP9 using Windows integrated authentication. Used IISProcy 1.5.0.
    It is two step prcoes.
    1) Configure ISAPI filter for IRJ
    2) Configure WebAS for Logon Module Stack. Create new module called HeaderVariableLoginModule.
    Complete following steps.
    1) Make sure you have IIS installed. Take a backup before the changes
    2) Installl ISAPI filter called IRJ.
    3) COpy IISPrxy files into the directory under Inetpub.
    4) Map ISAPI filter IRJ to the IISProcy ditrectory.
    5) Restart website to test ISAPI filter.
    6) Please make sure to add logging for IISProcy filter. This gives very good info.
    7) You can check the IisProxy.log file in the directory where you copied the IISProxy files.
    8) CHeck and make sure REMOTE_USER is populated in the IisProxy.log file.
    Configuration of WebAS server:
    1) Create new login module called HeaderVariableLoginModule
    2) Add this to the stack called ticket.
    3) Change BasicPasswordLoginModule to optional.
    Please use following URL for more details.
    http://help.sap.com/saphelp_nw04/helpdata/en/d0/a3d940c2653126e10000000a1550b0/frameset.htm
    This should fix all your problems. Let me know how it went.
    Give me the points.
    <?xml version="1.0" encoding="utf-8" ?><!DOCTYPE ISAPI-config[     <!ELEMENT ISAPI-config ( filter, extension, ( mapping | config )* )>     <!ATTLIST ISAPI-config           version CDATA #REQUIRED     >     <!ELEMENT filter (log-path?)>     <!ATTLIST filter           name CDATA #IMPLIED          log-level CDATA "3"          log-flags CDATA "0"          debug-flags CDATA "0"          priority ( high | medium | low ) "high"          extension-url CDATA "/scripts/IisProxy.dll"          authentication ( skip | normal | forward ) "normal"          remote-address ( skip | forward ) "skip"     >     <!ELEMENT extension (          keystore-dir?,          log-path?,          data-path?,          trace-path? )>     <!ATTLIST extension           name CDATA #IMPLIED          log-level CDATA "1"          log-flags CDATA "0"          debug-flags CDATA "0"          access ( filter | direct | both ) "filter"     >          <!ELEMENT keystore-dir (#PCDATA)>     <!ELEMENT log-path (#PCDATA)>     <!ELEMENT data-path (#PCDATA)>     <!ELEMENT trace-path (#PCDATA)>     <!ELEMENT mapping (          source+,          target,          compress-types*,           protocol-header?,          certificate-header?,          cert-chain-header?,          cipher-header?,          keysize-header?,          keystore-path?,          log-path?,          data-path? )>     <!ATTLIST mapping           name CDATA #IMPLIED          log-level CDATA "1"          log-flags CDATA "0"          debug-flags CDATA "0"          keep-alive ( true | false ) "true"          use-continue ( true | false ) "true"          close-socket ( true | false ) "true"          close-socket-delay CDATA "1000"          thread-count CDATA "100"          max-socket-age CDATA "37"     >     <!ELEMENT source (protocol, host?, port?, prefix, new-prefix?)>     <!ATTLIST source          access ( filter | direct | both ) "filter"     >     <!ELEMENT protocol (#PCDATA)>     <!ELEMENT host (#PCDATA)>     <!ELEMENT port (#PCDATA)>     <!ELEMENT prefix (#PCDATA)>     <!ELEMENT new-prefix (#PCDATA)>     <!ELEMENT target (protocol, host, port)>     <!ELEMENT compress-types (#PCDATA)>     <!ATTLIST compress-types           min-size CDATA "1024"     >     <!ELEMENT protocol-header (#PCDATA)>     <!ELEMENT certificate-header (#PCDATA)>     <!ELEMENT cert-chain-header (#PCDATA)>     <!ELEMENT cipher-header (#PCDATA)>     <!ELEMENT keysize-header (#PCDATA)>     <!ELEMENT keystore-path (#PCDATA)>     <!ELEMENT config ( source+ )>]><ISAPI-config version="1.6">     <filter name="IisProxy filter" log-level="3" authentication="forward" />     <extension name="IisProxy extension" />     <mapping name="IisProxy" log-level="3" debug-flags="-1">          <source>               <protocol>http</protocol>               <prefix>/irj/</prefix>          </source>          <source>               <protocol>http</protocol>               <prefix>/logon/</prefix>          </source>          <target>               <protocol>http</protocol>               <host>slcserver.pacificorp.us</host>               <port>50000</port>          </target>               <compress-types>text/html, text/plain</compress-types>     </mapping>     <config>          <source>               <protocol>http</protocol>               <host>localhost</host>               <prefix>/IisProxy/</prefix>          </source>          <source>               <protocol>https</protocol>               <host>localhost</host>               <prefix>/IisProxy/</prefix>          </source>     </config></ISAPI-config>

  • Need help on setup VNC with VZW broadband card on Win XP

    Currently I have 2 PCs on Win XP.  
    1st PC use 3G broadband card at home
    2nd PC use 4G broadband card
    Want to access 1st PC from remote.   Run the tightVNC but it did not work.  Any suggestion or any freeware that might work for this case?
    Thank you

    Here's a link to the forementioned patch:
    http://www.microsoft.com/downloads/details.aspx?familyid=662BB74D-E7C1-48D6-95EE -1459234F4483&displaylang=en
    Hope it helps

  • I am trying to setup VPN with QuickVPN

    Hi I am trying to setup VPN with WRVS4400N and Quick VPN on client side. I am fairly new to VPN and did some research and looked through the manual but can't seem to get it to work so far and from what I noticed many people are having this problem. So hopefully someone can tell what the problem is or at least point to right direction on solving this.
    Basically it gives the "Failed to establish connection" generic error, shows it almost instantly..
    It also showed the certificate error before but then I read about putting it in the installation directory and it stopped showing it, and whats strange is later I removed it but it doesnt show the error any longer, so don't know if its caching it somewhere or what can be going on...
    In effort to look for answer and test things out I tried to connect to another location and setup a WRV200 router, I also get the same error but not instantly, it even shows "Activating Policy" but then doesn't go farther and shows the generic error...
    Also with this setup strangly it always shows the certificate error, no matter if I put one in directory or not... Even tried to name it as the WRVS4400N certificate name...
    Anyway VPN IPSec is disabled, and Client Accounts are configured and changed password several times to make sure its correct, VPN Passthrough enabled on all 3 options.
    I tried to disable Windows Router, I also have a router in place do I possibly need to open some type of ports for the QuickVPN client?
    Don't know yet whats going on if I am missing something or if there is some problem that needs work-around but if you know the answer or guesses of answer please let me know.

    Hi Aleksandr,
    since this question is about a product in the Cisco Small Business / Linksys range, I suggest you move it to the community, where you will have a better chance of getting expert advice.
    best regards,
    Herbert
    Cisco Moderator

  • I have misplaced my iPod Touch 4th Generation. According to Find my iPhone, it should show up in offline mode. I need help on locating it with a software or some other way. Help?

    I have misplaced my iPod Touch 4th Generation. According to Find my iPhone, it should show up in offline mode. I need help on locating it with a software or some other way. Help?

    There is no other way.
    Sorry

  • Need help on struts configuration with ColdFusion 10 using IIS

    We need help on struts configuration with ColdFusion 10 using IIS.
    Earlier we were using ColdFusion 8 with IIS 6 for one of our application.  This application internally calls struts. After upgrading to ColdFusion 10 struts calls are not loading. We get 404 error.
    In ColdFusion 8 struts were configured using  actions extension .do in IIS from this file-
    C:\ColdFusion8\runtime\lib\wsconfig\jrun_iis6.dll.
    But in ColdFusion 10 this file is not present as ColdFusion 10 uses Tomcat in place of Jrun.
    Also there is no information in ColdFusion log file.

    Duane wrote:
    doctormirabilis, Welcome to the discussion area!
    1) how can i configure the time capsule in order to operate as a remote base station synchronizing with the relay using the ethernet port?
    Configure the Time Capsule to act as a bridge (not distributing IP addresses). Also configure the Time Capsule to create an 802.11n wireless network with a unique network name (SSID). That's it.
    2) how can i avoid that my powerbook while accessing my wireless network does connect through the relay station instead of using the time capsule?
    Configure the Time Capsule to use a different network name than the WDS link between the 2 AirPort Express (AX). Configure the PowerBook to use the Time Capsule network.
    There are 2 pieces of information that you should be aware of...
    (1) None of the PowerBooks are capable of 802.11n.
    (2) The WDS link cuts your available bandwidth in half. So the wireless link to your neighbor's has a maximum potential of 27 Mbps.
    Let's for a minute assume that you have a Mac compatible with 802.11n. In your configuration the time you could take advantage of the 802.11n speed is when the Mac is sending/recieving data directly from/to the Time Capsule.
    There would be NO speed increase in Internet access. The speed of Internet access is going to be controlled by the slowest link in the path to the Internet. That is probably the connection to the ISP. The next slowest path is the WDS link to your neighbor's.
    Duane,
    I am in a similar situation, sharing internet with my neighbor. Do you think it would be plausible to hook up a vonage phone adapter to time capsule's ethernet port if time capsule is bridging from my neighbor's router in the configuration you have described? A check of my upload speed shows 1.67Mbps (powerbookG4 w/ airport extreme). Vonage reccommends 90kbps minimum upload speed. Am I going to lose some speed putting the Vonag adapter behind time capsule?
    Thank you

  • Need help re-synching iPods with new computer and getting iTunes to...

    Need help re-synching iPods with new computer and getting iTunes to recognize our iPods (it doesn't even recognize them when they're plugged in).
    Hubby wiped my harddrive for me, so now I need to get everything back in proper places. I'm using windows XP and installed iTunes once again (I believe it's version 8). I also installed all of my iTunes songs. Now I need to know where to go from here. We have 3 iPods and I need to get them all synched once again. I know how to create different libraries for each of us, but I can't figure out how to get our songs back into our iTunes libraries. When I open iTunes and plug in an iPod, iTunes doesn't even show that an iPod is plugged in.
    What do I do now to get each of our iPods synched with our own libraries?
    TIA
    Brandy

    Thanks Zevoneer. The "Restart ipod service" worked and itunes is now recognizing my ipod! Hooray!
    Okay, now how do I synch all of our ipods with our individual libraries (I don't want all of my kids' songs and vice versa)? We each have hundreds of songs on our ipods that we don't want to lose.
    Thanks again!

  • Need help - I2C write/read with TAOS TCS3414 light sensor using USB-8451

    Hello, I'm new to labview and need help setting up a vi that will allow me to communicate with a digital light sensor (TAOS TCS3414) using a USB-8451. I need to use the sensor to measure light from a light source that I designed and built as part of a project im working on. I've tried looking at several labview I2C exampled but find them to be very confusing. I've used an arduino to interface with the sensor successfully but need to use labview and dont understand how to write the program. The actions are simple; I need initialize the sensor with a simple command and then request data from 8 data registers and then read that data. The data will then be used in further calculations. The portion i need help with is writing and reading from the sensor. I've attached the datasheet for the sensor as a guide. I can also provide the arduino code that i use to read data from the sensor if that would help. 
    Pleae keep in mind that i am completely new to labVIEW. I really do want to learn from this but need quick results so the more help the better. It would greately appreciate any help or explaination. 
    Attachments:
    TCS3414_Datasheet_EN_v1.pdf ‏1806 KB

    Hi Aaron,
    Here you go, this is made with a USB-8452.
    When you run the code tick the power en dac enable box on.
    Maybe you can help me with my problem, I want to use a fiber to sense light from a led.
    Do you use any fiber hardware with the TCS3414?
    gr,
    Attachments:
    TCS3414.vi ‏63 KB

  • Need help to create report with jpeg/gif image

    Hello,
    I need help with creating a form with a special jpeg/gif seal. I never done this Java. Until now, I created all forms with ansi C++ with HP escape characters to draw lines, boxs, and text. This form will contain boxes which is populated with database information read from a text file.
    Since this form contains a special seal on the upper right, I don't think it can be done with old fashion ansi C++. How can I create a form with Java and create it as a simple exe to just print the form to a specified printer.
    Thanks,
    John

    Hi,
    I am creating a form with boxes (lines and text). What is special about this form is that it has an image jpeg or gif at the top right corner. Is is a state department seal. Up to this form, I had used ansi C++ and print out escape HP character to print out the lines, boxes, and text. I have no idea how to print out the image. I am new to JAVA and only 1 class in it. Is there sample code out there to create this type of form with the image? I need a starting point.
    Thanks,
    John

  • NEED HELP!!! with my Micro Photo

    i need help i was having problems with my computer recognizing my Micro Photo so i was in to recovery menu so then i accidentally hit the reload firmware option and now i cant get it to work it only goes onto the Recovery Menu and i cant get the firmware updater to work and i cnat find no files of the firmware itself...but the weird thing is i can access the Micro Photo itself through my computer and browse it but idk wat to do some plzzz help me

    themagooshow,
    You don't need USB2.0 but you will need to have at least Service Pack for your Windows XP and Windows Media Player 0 installed.
    Jason

  • Need help in text field with 2D array

    text field with 2D array
    Hi
    I need help to represent (i) in from field and (j) in to field
    I and j are 2D an array indices.
    This code are not complated
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    //declaring class
    public class test3 extends Applet implements ActionListener
    { //declaring the TextField
    private TextField fromField ,toField;
    //declaring an array
    int weight[][];
    int m = 99; // m is infinity
    int N; // Set of Nodes
    int d; // distance
    int i; // source Node
    int j; // destition Node
    //declaring values of text field
    private int from = i; // start Node
    private int to = j; // end node
    public void init()
    setBackground(Color.white);
    setForeground(Color.red);
    //giving labels
    Label TITLE2,TITLE1;
    TITLE1 = new Label("from:");
    add(TITLE1);
    fromField = new TextField(5);
    add(fromField);
    // register listener using void add actionListener
    fromField.addActionListener(this);
    TITLE2 = new Label("to");
    add(TITLE2);
    toField = new TextField(5);
    add(toField);
    // register listener using void add actionListener
    toField.addActionListener(this);
    // event handler methods
    public void actionPerformed(ActionEvent event) {
    //declaring textfield
    from=Integer.parseInt(fromField.getText());
    to=Integer.parseInt(toField.getText());
    weight =new int[7][7];
    weight[1][1] = 0; weight[2][1]= 2;
    weight[1][2]= 2; weight[2][2]= 0;
    weight[1][3]= 5; weight[2][3]= 3;
    weight[1][4]= 1; weight[2][4]= 2;
    weight[1][5]= 99; weight[2][5]= 99;
    weight[1][6]= 99; weight[2][6]= 99;
    weight[3][1]= 5;
    weight[3][2]= 3;
    weight[3][3]= 0;
    weight[3][4]= 3;
    weight[3][5]= 1;
    weight[3][6]= 5;
    for (int i=1; i<7; ++i) {
    for (int j=1; j<7; ++j)

    all your base are belong to us

  • New and need help - drag and drop with dynamic text

    So I'm doing this project and as an animator I'm not familiar with the whole action script side of flash
    Okay so far I've managed to create the whole Drag and Drop feature and it works well, the thing is I want to make it so when you drag in object in the correct spot and new text appears, and I need like six different object with the dynamic text. but I have no idea how to integrated it in my code or where I should start!
    So i based myself on some tutorial so theres some code in there that had dynamic text, but not exactly what i wanted
    Your help would be much appreciated!
    This is my code:
    var counter:Number = 0;
    var startX:Number;
    var startY:Number;
    six_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    six_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    five_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    five_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    four_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    four_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    three_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    three_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    two_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    two_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    one_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    one_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    function pickUp(event:MouseEvent):void {
        event.target.startDrag(true);
    reply_txt.text = "";
    event.target.parent.addChild(event.target);
    startX = event.target.x;
    startY = event.target.y;
    function dropIt(event:MouseEvent):void {
        event.target.stopDrag();
    var myTargetName:String = "target" + event.target.name;
    var myTarget:DisplayObject = getChildByName(myTargetName);
    if (event.target.dropTarget != null && event.target.dropTarget.parent == myTarget){
        reply_txt.text = "Good Job!";
    event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    event.target.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
    event.target.buttonMode = false;
    event.target.x = myTarget.x;
    event.target.y = myTarget.y;
    } else {
    reply_txt.text = "Try Again!";
    event.target.x = startX;
    event.target.y = startY;
        if(counter == 6){
            reply_txt.text = "Congrats, you're finished!";
    six_mc.buttonMode = true;
    five_mc.buttonMode = true;
    four_mc.buttonMode = true;
    three_mc.buttonMode = true;
    two_mc.buttonMode = true;
    one_mc.buttonMode = true;

    where you have
    xxx.text = ....
    is where you're assigning text.

  • Need help on ammount formating with num{$z,zzz,zz9.99}

    Hi All
    Need help in formating the amount fields.
    Currently I am using num{$z,zzz,zz9.99} Its working fine for positive ammount value.
    But for negative amount its giving output as $-18,970.50
    Expected out is -$18,970.50
    need '-' sign before $
    Thanks,
    Abhijit

    issue resolved by setting pattern as  = num{z$z,zzz,zz9.99}

  • Need Help ASAP!! with iPod Classic 80GB

    This is my first apple product and it is not giving a good impression. I need help eargently!
    I Sync 2969 songs onto my ipod for first time 2 days ago using latest Itunes it worked great and i was happy just my ipod didnt have all the album art, so the next day i plugged it in and put all the album art to the correct albums which went fine, then i wanted to add another album. I clicked sync to update the library on my ipod and it started transfering at a sluggish speed simular to this 1....2....3....4....5....6 etc it eventually got to 196 out of 1248 and stopped and 2 mins later itunes crashed. so the only way i could remove my ipod was to pull it out without ejecting it i then tried to look for the songs and what do you know it said on my Ipod 0 Music..... I was gob smacked i put it back in, in hope for it to sync again but ever since then it continues to do that, but i can manually transfer max 4 albums by drag and drop, at a time before itunes crashes. I am seriously going to throw it in the bin soon if i cant get it working and i will never ever buy an apple product again, i love the idea of the iPod but there to faffy! compared to a standard MP3 player..
    PLEASE HELP ME i have tried restoring it many times, ive tried resetting it holding menu button and select button. and i have also tried another way were you restard the ipod and during the apple logo you quickly hold play which formats it..
    please help me!! apples help lines are useless!

    You do understand that this is a user-to-user forum? That we're all volunteers? And this is a weekend? You may need to be a bit more patient.
    If I had an answer I would be happy to try to help. When you say you've tried "restoring" it, do you mean that you've hooked it up to your computer and pressed the "Restore" button in iTunes? If not, that's the next thing you should try.
    I know you've tried a few things but it wouldn't hurt to go through the standard trouble shooting steps:
    http://www.apple.com/support/ipod/five_rs/
    Best of luck.

Maybe you are looking for

  • GL vendor wise

    Hi all if i want to see one GL account......vndor wise ???  is there any tocde?? fbl3n is there i gave paritcular gl no , but here not showing all vendore relating to that parituclar gl a/c plz tell me urgent

  • IOS5 podcast tracks in an episode

    I am subscribed to several podcasts that DJs put in tracks from different artists, and i used to be able to see the name of the track and its artist in each segments in each episode of the podcast, After upgrading my iPad to iOS5, I can only see the

  • Does photoshop elements 12 editor on app store support retina display

    Hello.           I was wondering if anyone has downloaded photoshop elements 12 editor from the app store and does it support the retina display function. I know that the version you get from adobe ( elements 12) does not support this function. The r

  • Feature Request: Slideshow and Light table

    Hello I was hoping for two features in the next Lightroom: First a more professional audio-slideshow option. More parallel soundtracks possible on a timeline are a must I think. More editing tools for timing the slides and the audio as well. And the

  • OT:Descarga de mensajes en Outlook Express

    Hola a todos. Desde hace unos d�as que en la barra de estado me indica xxxx mensaje(s), xxxx no le�do(s), 2 no descargado(s), y de �stos dos no descargados ni siquiera figura el encabezamiento. Alguien podr�a decirme a qu� puede deberse o c�mo se sol