Non-continuous wan subnet

Hi,
We are assigned some IP’s from our ISP, Subnetmask /27. Actualy 217.x.187.194-198 and from 217.x.187.203-213 The IP’s between are given to someone else. This should be 30 available hosts. GW 217.x.187.193
I will use the range 217.x.187.194-198 for my internal networks.
Question. Will there be a problem not having entire full subnet or is this possible on the ASA 5505? Or should I ask for a complete range?
Also, is there any possibility to do static nat through the asa and allow all traffic from IP 217.x.187.196 to another router on the inside. This router belongs to another company who needs to regularly open and close ports through to their company. we do not want to give out access to ASA.  
Br
Fredrik

Hi,
If we are strictly talking about having the 2 subnets on the WAN interface of the ASA then that is no problem at all. Though you have to consider the fact that ASA can not have 2 different subnet configured on a single interface (in your case a Vlan interface). But there is a way to implement that, the second subnet just is not configured under any interface. The subnet and/or its IP addresses are only present on the ASA in its NAT configurations.
There is 2 ways you can handle this with your ISP
You can configure the other subnet between your ASA and the ISP Router and request the ISP to route the second subnet towards your ASAs WAN interface IP address (that belongs to the first subnet)
You can configure the other subnet between your ASA and the ISP can configure both of the subnet on their link towards the ASA. Even though the second subnet is not configured on your ASAs WAN interface you are able to configure NAT using the second subnets IP addresses on the ASA. In this case when traffic is incoming to the second subnet from the Internet the ISP router will send ARP requests for the second subnets IP addresses (as the ISP has the subnet as directly connected) and the ASA will respond to those ARP requests with its WAN interface MAC address IF there is a NAT configuration present. You will also have to make sure that the ASA is configured to answer to ARP requests on the WAN interface. If you were to go with this option then let us know the software the ASA is running and we can confirm what commands you need enabled/disabled.
To avoid any ARP related problems and other problems I would suggest that you ask the ISP to route the second subnet towards the ASA WAN IP address. Much more simple that way.
Now you mention that you want to do a Static NAT on the ASA for the internal router? This should be no problem and there should not be any problem allowing all traffic to the internal host when it has the Static NAT configured.
Since you have 2 public subnets you also have the option to configure the second public subnet directly on the internal interface of the ASA and the other company can use the public IP address directly on their Router. Naturally configuring this second subnet on the ASA might waste some public IP address (since you need one for the gateway etc.) but it completely depends on your setup.
Hope I made any sense :) Feel free to ask more if needed
- Jouni

Similar Messages

  • How to display non-continuous lines in a 2D Line flash chart ?

    Hi
    I am making 2D lines charts. is there a way ig tehre are no data in the table, to not to display points ?
    For example I have a table with this data :
    Date     Value
    01/01/09 2
    02/01/09 7
    03/01/09 4
    05/01/09 3
    06/01/09 2You see in the example anove that there is no data for the day 04/01/09.
    I would like the chart no to display any point for that day and start again for date following. This means displaying a non-continuous line.
    I hope I am clear.
    I tried but had no solutions. Would you have any idea on this ?
    Thank you for your kind help !
    Christian

    Hi Christian
    You're missing a lot of the XML build up from the website.
    You also need to return the string "Missing" for each date that you haven't got.
    Try this to get you started (you'll certainly need to fiddle with it to get it working)...
    DECLARE
       l_xml   VARCHAR2 (32767);
       start_date DATE;
       end_date DATE;
       the_date DATE;
       count_holder VARCHAR2(10);
    BEGIN
       l_xml :=        '<anychart> ';
       l_xml := l_xml||'<settings> ';
       l_xml := l_xml||'<animation enabled="True"/> ';
       l_xml := l_xml||'</settings> ';
       l_xml := l_xml||'<charts> ';
       l_xml := l_xml||'<chart plot_type="Scatter"> ';
       l_xml := l_xml||'<chart_settings> ';
       l_xml := l_xml||'<chart_background> ';
       l_xml := l_xml||'<border color="#990099"/> ';
       l_xml := l_xml||'</chart_background> ';
       l_xml := l_xml||'<title enabled="true"> ';
       l_xml := l_xml||'<text> Something </text> ';
       l_xml := l_xml||'</title> ';
       l_xml := l_xml||'<axes> ';
       l_xml := l_xml||'<x_axis tickmarks_placement="Center"> ';
       l_xml := l_xml||'<title enabled="true"> ';
       l_xml := l_xml||'<text>Date</text> ';
       l_xml := l_xml||'</title> ';
       l_xml := l_xml||'</x_axis> ';
       l_xml := l_xml||'<y_axis> ';
       l_xml := l_xml||'<scale minimum="1" type="Linear"/> ';
       l_xml := l_xml||'<title enabled="true"> ';
       l_xml := l_xml||'<text>Count</text> ';
       l_xml := l_xml||'</title> ';
       l_xml := l_xml||'</y_axis> ';
       l_xml := l_xml||'</axes> ';
       l_xml := l_xml||'</chart_settings> ';
       l_xml := l_xml||'<data_plot_settings default_series_type="Line"> ';
       l_xml := l_xml||'<line_series point_padding="0.2" group_padding="1"> ';
       l_xml := l_xml||'<label_settings enabled="true"> ';
       l_xml := l_xml||'<background enabled="false"/> ';
       l_xml := l_xml||'<font color="Rgb(45,45,45)" bold="true" size="9"> ';
       l_xml := l_xml||'<effects enabled="true"> ';
       l_xml := l_xml||'<glow enabled="true" color="White" opacity="1" blur_x="1.5" blur_y="1.5" strength="3"/> ';
       l_xml := l_xml||'</effects> ';
       l_xml := l_xml||'</font> ';
       l_xml := l_xml||'<format>{%YValue}{numDecimals:0}</format> ';
       l_xml := l_xml||'</label_settings> ';
       l_xml := l_xml||'<tooltip_settings enabled="true"> ';
       l_xml := l_xml||'<format> ';
       l_xml := l_xml||'Something: {%YValue}{numDecimals:0} ';
       l_xml := l_xml||'Date: {%Name} ';
       l_xml := l_xml||'</format> ';
       l_xml := l_xml||'<background> ';
       l_xml := l_xml||'<border type="Solid" color="DarkColor(%Color)"/> ';
       l_xml := l_xml||'</background> ';
       l_xml := l_xml||'<font color="DarkColor(%Color)"/> ';
       l_xml := l_xml||'</tooltip_settings> ';
       l_xml := l_xml||'<marker_settings enabled="true"/> ';
       l_xml := l_xml||'<line_style> ';
       l_xml := l_xml||'<line thickness="3"/> ';
       l_xml := l_xml||'</line_style> ';
       l_xml := l_xml||'</line_series> ';
       l_xml := l_xml||'</data_plot_settings> ';     
       l_xml := l_xml||'<data> '; 
       l_xml := l_xml||'<series name="Count"> ';     
       start_date := TO_DATE('01/01/2009');
       end_date   := TO_DATE('10/01/2009');
       the_date   := start_date;
       WHILE the_date <= end_date
       LOOP
        SELECT DECODE(COUNT(*),0,'Missing',COUNT(*))
        INTO the_count
        FROM evv_stpl
        WHERE date1 = the_date;
        l_xml := l_xml || '<point name = "'|| the_date ||'" y="'|| the_count ||'"/>';
        the_date := the_date + INTERVAL '1' DAY;
       END LOOP;
       l_xml := l_xml ||'</series> ';
       l_xml := l_xml ||'</data> ';
       l_xml := l_xml ||'</chart> ';
       l_xml := l_xml ||'</charts> ';
       l_xml := l_xml ||'</anychart>';
       HTP.p
    <html>
    <head>
    <title>AnyChart Sample</title>
    <script type="text/javascript" language="javascript" src="D:\oracle\product\10.2.0\apache\Apache\Apache\images\flashchart\AnyChart.js"></script>
    <body>
    <div id="chartDiv-1"></div>
        <script type="text/javascript" language="javascript">
        //<![CDATA[
        AnyChart.swfFile = ''D:\oracle\product\10.2.0\apache\Apache\Apache\images\flashchart\AnyChart.js'';
        var chart = new AnyChart();
        chart.width = "800";
        chart.height = "600";
        var data = '''
           || l_xml
           || ''';
        chart.setData(data);
        chart.write("chartDiv-1");
        //]]>
        </script>
    </body>
    </html>
    END;Hopefully you understand what I'm trying to do here, unfortunately I can't try it out myself at the moment.
    Maybe if you get stuck you could post it on apex.oracle.com?
    Cheers
    Ben
    Oops, handled a count of zero incorrectly - amended
    Edited by: Munky on May 7, 2009 1:17 PM

  • Routing non-contiguous WAN with RV042?

    Environment: RV042 V03 (firmware v4.0.0.07-tm) currently routing a /29 to an internal network.
    We used up our /29 and now have a 2nd non-contiguous /29.  Both of these come over the same wire.
    Is there any way to configure the RV042 to route both blocks?  I need to do 1:1 NAT with all of the addresses in the first /29 as well as 3 addresses in the second /29.  There is only one internal subnet.
    Any help would be appreciated.

    Or to ask an alternatie question, is there a Cisco product that would allow me to do this routing?

  • WRV210 Router - Can't change Static WAN Subnet to 240

    In the Internet Setup area (WAN) when I change to Static IP I can't change the Subnet Mask from 255.255.255.0 to 255.255.255.240 which is the information currently in my D-Link router.  When I try to save the changes I get the error "The IP address is not in the right subnet".  I find it hard to believe that a lowly D-Link $35 router has nore capability then a Ciso Small Business Router.  Can anyone help?
    Thanks

    Got it!
    My static IP was outside the Subnet Mask IP range:
    Using the 4th octet address of 240 if I subtract 256 - 240 = 16
    so starting at xxx.xx.xx.0
    16
    32
    48
    64
    80
    96
    112 and so on....  My IP address was .50 and my Gateway was .45 putting the two IP's outside the .32 to .64 IP address range and in different networks.

  • 3rd gen 8Gb non continually reboots - what to do?

    I went to add some songs to my nano and iTunes said there was a firmware update, so I said yes to install it and when the iPod rebooted, it just kept rebooting again and again. The Apple logo shows up and then 5 seconds later the screen goes blank and it boots again. Has been doing it all day. None of the restore things work, probably because it hasn't booted far enough to work with the buttons. Doesn't show up when plugged into USB.
    Any ideas as to what to do?

    i had the exact same problem with firmware 1.0.2.
    had to reset by holding menu & select for about ten seconds, then
    pressing play/pause & select for another ten seconds to enter disc mode.
    i then reset the nano with itunes and downgraded to firmware 1.0.1 (after deleting the files iPod_26.1.0.2 and iPod_26.1.0.2.ipsw.signature (are in the folder *ipod software updates* somewhere on the harddisk)).
    now in works just fine with fw 1.0.1.
    fw 1.0.2 obviously contains a bug.

  • Keller leo 3 affichage de pression non continu

    Bonjour
    j'ai un petit problème j'ai développé une application pour suivre la pression en direct depuis un manomètre keller LEO3 et quand je l'ai introduit dans mon VI principal j'ai obtenu ceci (voir photo)
    Il s'agit de la ligne bleue. 
    Le suivi est discontinu et je ne vois pas pourquoi, quelqu'un aurait-il une idée?
    je joint mes VI, une image du graphique et le protocole de communication et voici un site ou j'ai trouvé un exemple d'application (j'ai repris les parties qui m'intéressaient)
    http://www.keller-druck.ch/home_f/paprod_f/progrcode_f.asp
    Pièces jointes :
    graphique avec trou.jpg ‏31 KB
    Communication protocol Serie30_V3.1_e.pdf ‏415 KB
    Mano_in.zip ‏126 KB

    Bonjour, je ne peux pas regarder votre code car je n’ai pas installé LV2013 sur ma machine.
    Mais quelques pistes et une explication possible des « trous » : des valeurs sont à NAN.
    http://fr.wikipedia.org/wiki/NaN
    En effet, si dans un tableau de nombre, vous notez « NAN » soit Not A number alors si vous voulez représenter le tableau dans un graphique LabVIEW, les NAN ne seront pas représentés. Donc des trous.
    Peut-être que le NAN est causé dans votre code par une erreur de communication avec votre appareil. Par exemple si erreur alors dans le décodage de votre mesure retourne NAN.
    Questions :
    > Gérez-vous correctement les erreurs de communication avec l’appareil ?
    > Avez-vous fait un export des données du graphique vers Excel pour « regarder » les valeurs ? (sur le graphique, clic droit exporter vers Excel)
    Bonne continuation
    A+
    Luc Desruelle | Voir mon profil | LabVIEW Code & blog
    Co-auteur livre LabVIEW : Programmation et applications
    CLA : Certified LabVIEW Architect / Certifié Architecte LabVIEW
    CLD : Certified LabVIEW Developer / Certifié Développeur LabVIEW

  • Waveform non temporelle et non continue

    Bonjour à tous,
    j'aimerai utiliser certaines fonctions de waveform sur mes signaux, qui ne sont pas sous forme de waveform. J'essaie donc de les y mettre, mais je n'y arrive pas.
    Je vous joins mon vi pour que vous puissiez mieux cerner mon problème.
    Les 2 tableaux d'entrées sont issus d'une DAQ et l'autre d'une acquisition de valeurs sur le port série. Ces 2 tableaux sont synchronisés, c'est à dire que chaque ligne des 2 tableaux correspondent (à peu de choses près) au meme instant de mesure. Ce temps est par contre non constant entre 10 et 20ms). L'aspect temporel, je m'en fiche, car Position me donne l'angle de mon système à caractériser (potentiomètre rotatif) et DAQ correspond aux ratios de tensions entre tension curseur et alimentation potar.
    Bref, j'arrive donc à générer 2 graphes XY qui correspondent à la caractéristique des potars, mais j'aimerai pouvoir utiliser les fonctions limtes de waveform pour vérifier que ces graphes sont bien dans le gabarit voulu, et par la suite, j'aimerai aussi utiliser la fonction "trigger". Hélas, je n'arrive pas à comprendre comment les utiliser avec mes données qui ne sont pas sous forme de waveform.
    De bonnes idées à me conseiller ?
    Merci d'avance,
    David
    Résolu !
    Accéder à la solution.
    Pièces jointes :
    TriTableauPointsReference.vi ‏151 KB

    Bonjour,
    Les fonctions que vous souhaitez utiliser semblent intéressantes lorsque le
    signal possède une période d’échantillonnage constante, ce qui ne semble pas
    être votre cas (10 à 20 ms). Vu que l’information temporelle ne vous intéresse
    pas, vous pouvez par exemple utiliser la fonction "max et min d’un
    tableau" qui vous renvoie le minimum et le maximum d’un tableau ainsi que
    leurs indices pour obtenir le "gabarit" de votre graphe et vous
    assurer qu’il convient. Je vous invite aussi à prendre connaissance des
    exemples fournis dans l’aide détaillé de la fonction « Test de limite » qui pourraient vous guider.
    Cordialement 
    Mathieu B
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Forum Aéronautique, Spatial et Défense. Avec la participation exceptionnelle de Bernard DUPRIEU, Res...

  • Help selecting non-continuous text in code editor, please?

    I'm editing a list... I want to make a lot of selections at once and  edit them at the same time.  You know how you can go through files in  windows and ctrl+click/select files to move around?  I could do this in Notepad++ so I guess I could switch back and forth but that would be a big pain.  Any ideas?

    Depending on what the edit is, you could use the Find & Replace (CRTL+F) to just click your way through the list items. If the list is all different items, you'll probably have to do it in a word processor. I don't know any way to do it in the code editor.

  • How to deal with non-continuous shapes and graphic styles

    I am not sure how to frame this question so I will try to describe the problem.
    Imagine I have two shapes. One is a hollowed out circle (like a doughnut chart). The second is a smaller filled in circle. The smaller filled in circle is then poitioned inside the hoolowed out one, so you have like a target but with no "middle" band. What I would like to do is apply a graphic style to the COMBINED shape. The problem is that if I select both shapes and apply the style, each shape will have its own style, whereas what I want is for the style to be distributed over the two shapes as if they were one. And if I use the shape builder tool, when I join the two shapes, from the outer hollowed out circle to the inner filled in circle, I fill in the shape for the "middle band" whereas I want that middle band to be empty.
    You can probably tell I don't know Illustrator and come from Photoshop. In PS, I would simply select my two shapes and apply a style. Since my selection forms a shape that ignores the middle band, the style applies evenly to the whole selection. Can I do something similar in Ilustrator? In reality my network of shapes is more complex that the example above and I do need to keep it a vector.
    Thank you for your suggestions.
    Chris

    There are really two types of Graphic Styles - Object level styles and Group level styles. There is no way to tell which style is which. So if you have an Object level Style and try to apply it to a group of objects or often a compound shape, you get each individual object having the style. If you have a Group level style and try to apply it to only an object, you often get nothing applied.
    It perhaps sounds like you have an Object level style and are trying to apply it to a group.
    There's no way to convert an Object level style to a Group level style or vice versa. The best (and pretty much only) way I've found to get around this is to apply the style to teh correct level then make a note of all the style settings, select the other level and recreate the style for that level.
    Whether or not a style applies correctly has a great deal to do with specific aspects of the style in addition to what level the style was generated from. This is a frustrating aspect of Graphic Styles.

  • Multiple subnets on SA520

    Hi - I am new to Cisco products. We have currently got a Netgear FVX538 running in front of a few servers. We currently have 2 ranges of IP addresses provided to us on 2 separate subnets. We configured the netgear box with the first IP addresses of each subnet as the IP address of each of the primary and secondary LANs. This then allowed us to set the gateway addresses of servers on the network to either of those 2 addresses, depending on it's range.
    This all worked fine - except for the fact that the Netgear box is incredibly flakey, so we decided to get a Cisco box.
    We have gone for the SA520, which I have been trying to configure this afternoon. Unfortunately I am now having concerns as to whether it is possible to configure 2 separate subnets internally on this box in the same way we have done with the netgear box. If I am right and this is not possible, does anyone know if there is a way of achieving what we want? ie - classical routing, one incoming WAN interface with multiple subnets?
    Thanks,
    Giles

    Thanks for getting back to me Julio. I'm not sure whether this helps or not. I'll try and explain the current setup a bit better:
    (IP addresses have been changed)
    WAN IP : 31.2.3.70
    WAN SUBNET : 255.255.255.252
    Gateway : 31.2.3.69
    Primary LAN : 31.20.1.135
    Primary LAN Subnet : 255.255.255.248
    Secondary LAN : 78.92.47.165
    Secondary LAN Subnet : 255.255.255.248
    I can then configure servers on the network on the following ranges:
    31.20.1.136 - 31.20.1.140
    Gateway: 31.20.1.135
    Or
    78.92.47.166 - 78.92.47.170
    Gateway: 78.92.47.165
    I can configure the new Cisco box with one of these ranges, but as it doesn't seem to have LAN Multi-homing, I don't seem to be able to add the 2nd subnet. Is this right? Is there another way of configuring it?
    Thanks,
    Giles

  • Adobe Reader 8.x - view page width continues

    Latest official version of Adobe Reader installed on win vista business 32Bits.
    Preferences->Page View->Layout
    (these are my translations of German Adobe, might be inaccurate)
    set to "page width, continues".
    However most pdf documents open with "page width, non-continues".
    It is very frustrating for me.
    What should I check to get my setting working ?

    You can't. The page view settings can also specified in the PDF document.

  • Continuous stock definition

    Hi to all
    Nowadays in SAP BO 2007 A there some basis initialization as "Use Continuos Stock" that is a global definition for company.
    Since we have now the G/L Account Determination per Period, why not include also this defition related to Continuous Stock?
    We have an issue that we have because in Portugal related to Continuous Stock.
    In our legal system not all companies have to use Continuous Stock, but could be mandatory so some companies start without continuous stock but for some legarl issues must change to Continuous Stock.
    Now what we do here is the creation of new database with the new Basis Initialization.
    So if we have this definition in G/L Account Determination it will not be necessary to create a new database.
    Comment pleasethis issue.
    Regards
    Vasco Silva

    Hello,
    Thank you for this interesting request.
    As you know continuous and non-continuous stock (aka perpetual and periodic) inventory valuation concepts are completely different in regards to posting rules and valuation during the year. It is hardly a question of single switch. Therefore to implement control to change how company valuates stock requires huge development effort.
    You have noticed correctly posting period selection on G/L Account Determination form. This was implemented as 'current period' concept was left in 2007 version making user work more flexible. G/L Account Determination were set per posting periods even before the 2007 version but this was controlled by 'current period' switch.

  • VMW Fusion 4.1 breaks 1 host LAN subnet

    Testing VMware Fusion 4.1 on '09 MacBook Pro Lion 10.7.2 to run a Lion 10.7.2 guest for testing. When Fusion is running, regardless of VM on, suspended or stopped, it sometimes has (not yet consistantly reproduceable) killed Exchange mail in the host (mail.app or MS 02k11) and kills any new access to one particular local subnet (yet all other LAN and WAN subnets are fine) from host wired etnernet LAN (guest VM running bridged, wifi, totally separate / firewalled from host wired LAN). Quit Fusion and, bam, all works again. Repeatable back & forth, and after reboot with nothing else running. Can't even ping subnet on router. Even stranger: if shared server volumes from affected subnet are mounted in host before starting Fusion they stay mounted and fully accessible for read/write yet their whole subnet can no longer be pinged, no new connection to server from host can be established.
    Tried changing lots of network settings in host, Fusion and guest VM, seems to make no difference: The simple act of starting Fusion.app breaks host access to just the 1 local subnet. Quitting Fusion.app restores it.
    Anyone got any ideas what causes this, maybe something simple I've overlooked? TIA.

    Sorry to hear that.
    But Apple have probably broken it when they added the MobileMe and modified the Wide-Area Bonjour code.
    However, I can report that Back-to-My-Mac does work on the AEBS. If you already a MM subscriber, you can use that to get back to the AirDisk.

  • IP automatic for WAN port doesn´t works

    Hi, I have a RV042 with latest firmware (4.0.4.02) and I´m trying to conect to Internet in port WAN1 with the optino "Obtain an IP automatically". I have noticed that the router receives an IP from the modem, I´m able to connect to the from a PC in the same WAN subnet to the WEB Management page, but in the system summary the Wan Status is IP address 0.0.0.0  default gateway 0.0.0.0 DNS 0.0.0.0 and the pc in the internal LAN couldn't surf Internet.
    The only way is assigning an static IP an DNS servers, and then all works fine.
    On the system log shows the message "infinite IP address lease time. Exiting" when activate the IP automatically for the WAN1 connection type.
    There is no option to change the leased time.
    I need to send a router to a remote office where the connection to INternet is with a dynamic IP. Help please

    I tried connecting a LAN port to the WAN port and it worked.  I then connected the WAN port to the LAN port of a DLink router in series and I could communicate with the internet.  I then connected it directly to the Motorola CPEi 150 and the port showed nothing.  I then tried to repeat my steps and could not get any responce on the WAN port even with rebooting the router and reverting to factory defaults.  The WAN port appears to have  intermitten problems.  I will attempt to troubleshoot some more but I may have to give up.

  • Capturing continuous HDV over timecode breaks

    Hello! I hope someone out there can assist me - I've been searching google and doing some trial and error, but cannot find a solution.
    I have HDV video that I'm trying to capture into FCP 7. The footage has timecode breaks in it, some longer than others. I'd love to FCP to just gloss over them, ala capturing DV footage, but it seems it cannot.
    Re-recording is not an option as the client doesn't want to pay for the additional work. The capture itself is a byproduct of the videographer not remembering to compress live on site.
    Thanks for any help you might have!
    Additional info - capturing to a FW800 drive, Macbook Pro 2.2 i7 with 16GB ram - HDV coming from Sony HVR 1500
    Thank you!

    Can you get your hands on the same make and model camcorder that the footage was shot on?  I know this was suggested in a prior post and you said that you can't get the camera.  But, if you can rent a Sony HVR 1500 (I'm assuming it's a rental), can't you rent the same camera that it was shot in?  It's not uncommon to sometimes have to capture from the same device that was used to shoot the video in the first place.
    The drop frame error that you linked does not result from non-continuous time code.
    Also, the free run time code setting on the deck affects where it looks for tc source when recording (it doesn't affect tc during playback of a recorded tape).
    Based on everything in this forum so far, I'd suggest you go with Michael's suggestion and get a Blackmagic Decklink card (assuming that your computer can accomodate one).  Patching the SD-HDI out of the deck to the SD-HDI input of the Blackmagic Decklink should do the trick.  If you have something with HDMI out on it that can play the tape, you can go with Blackmagic's more affordable Intensity product that has HDMI in.
    Plan C would be to rent or buy a HD field recorder and patch the video out of the deck to the video in of the field recorder.  As long as the tape plays, you should be able to get it across.
    Good luck!
    -Warren

Maybe you are looking for

  • My ipod is not registering on my computer, how can i fix this?

    I have "clicked" something and now my ipod/itunes isn't working properly. When I connect my ipod, it doesn't register in my drives folder. When I go into itunes, all the songs stored on my ipod are there, but are greyed out. I have tried to upload so

  • Difference between Ledger and Subledger Values.

    Hi Experts, We are taking periodic balances in local currencies for all the (Say there are 10 vendors who belong to the same Recon account 7110000) 10 Vendors with the T Code S_ALR_87012082. and also For the GL 711000 (Recon Account) with T code FS10

  • Install Oracle 9 - Problem with jre

    Hi, I have problems with the Oracle Installer in Suse 8.0. The installer hangs when it launchs the configurations tools setup ( near of end of installation ). The line is below. It looks like that the installer is trying to use another JRE version (

  • Solaris 10 6/06 ZFS and Zones, not quite there yet...

    I was all excited to get ZFS working in our environment, but alas, a warning appeared in the docs, which drained my excitement! : http://docs.sun.com/app/docs/doc/817-1592/6mhahuous?a=view essentially it says that ZFS should not be used for non-globa

  • T Code Program Diffaence

    Hello Technical Fokes, As per SAP Standard in FI-CO module we r using S_ALR_87012277 and also F.08. both the TCode give me the same result. But I want to know is there any diffarence in Program for the mention Tcode. Basically I want to is there any