IAD 2431 with ATM

OK,
Trying to get a 2431 IAD to work with an ATM T-1. Interface comes up, PVCs come up, but no IP connectivity. Traffic counters on the interface and PVCs increment, but no IP (ping) connectivity. Can't even ping myself.
Config below
version 12.4
service timestamps debug datetime msec localtime show-timezone
service timestamps log datetime msec localtime show-timezone
no service password-encryption
hostname Router
boot-start-marker
boot-end-marker
card type t1 1
logging buffered 51384 debugging
enable password cstc
no aaa new-model
clock timezone EST -5
clock summer-time EDT recurring
network-clock-participate T1 1/0
network-clock-participate T1 1/1
network-clock-select 1 T1 1/0
ip arp gratuitous local
voice-card 0
controller T1 1/0
mode atm
framing esf
linecode b8zs
controller T1 1/1
framing esf
linecode b8zs
interface FastEthernet0/0
ip address 24.97.148.116 255.255.255.240
duplex full
speed auto
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
interface ATM1/0
ip address 10.33.1.1 255.255.255.0
no atm ilmi-keepalive
atm uni-version 3.1
arp arpa
arp timeout 900
pvc VoicePVC 5/185
vbr-rt 106 64 11
encapsulation aal2
pvc DataPVC 5/189
vbr-nrt 96 96 1
encapsulation aal5snap
protocol ip inarp
pppoe max-sessions 5
pppoe-client dial-pool-number 1
ip default-gateway 24.97.148.xxx
ip http server
no ip http secure-server
ip route 0.0.0.0 0.0.0.0 24.97.148.xxx
access-list 101 permit ip any any log
control-plane
line con 0
line aux 0
line vty 0 4
access-class 3 in
password cisco
login
ntp server 64.246.130.xxx
sho int atm 1/0
ATM1/0 is up, line protocol is up
Hardware is NetGX ATM TC
Internet address is 10.33.1.1/24
MTU 1500 bytes, sub MTU 1500, BW 1536 Kbit, DLY 20000 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ATM, loopback not set
ARP type: ARPA, ARP Timeout 00:15:00
Encapsulation(s):, PVC mode
511 maximum active VCs, 2 current VCCs
VC Auto Creation Disabled.
VC idle disconnect time: 300 seconds
Last input never, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: Per VC Queueing
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
721 packets input, 40376 bytes, 0 no buffer
Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
919 packets output, 54482 bytes, 0 underruns
0 output errors, 0 collisions, 2 interface resets
0 output buffer failures, 0 output buffers swapped out
sho atm pvc
Router#sho atm pvc
VCD / Peak Avg/Min Burst
Interface Name VPI VCI Type Encaps SC Kbps Kbps Cells Sts
1/0 VoicePVC 5 185 PVC AAL2 VBR 106 64 11 UP
( 64)
1/0 DataPVC 5 189 PVC SNAP VBR 96 96 1 UP
( 96)
sho ip route
Gateway of last resort is 24.97.148.113 to network 0.0.0.0
24.0.0.0/28 is subnetted, 1 subnets
C 24.97.148.112 is directly connected, FastEthernet0/0
10.0.0.0/24 is subnetted, 1 subnets
C 10.33.1.0 is directly connected, ATM1/0
S* 0.0.0.0/0 [1/0] via 24.97.148.113
Ping to 10.33.1.254 results in an "Incomplete" entry in the arp table.

1. Saving the configuration and reload the router.
2. Do a "shut" and "no shut" to the interface after config.

Similar Messages

  • IPSEC issue in Cisco IAD 2431

    Hello all,
    I cam across something when i was troubleshooting IPSEC VPN connections between two Cisco IAD 2431s. Here is a snapshot of config on one of the routers:
    crypto map vpnmap 6 ipsec-isakmp
    description To_Grovecity
    set peer X.X.X.X
    set transform-set vpnset
    match address To_Grovecity
    crypto map vpnmap 10 ipsec-isakmp
    description To_Datacenter
    set peer Y.Y.Y.Y
    set transform-set vpnset
    match address To_Datacenter
    qos pre-classify
    ip access-list extended To_Grovecity
    permit ip 10.24.96.0 0.0.0.255 10.80.103.0 0.0.0.255
    ip access-list extended To_Datacenter
    permit ip 10.24.96.0 0.0.0.255 10.11.12.0 0.0.0.255
    permit ip 10.24.96.0 0.0.0.255 172.31.46.0 0.0.0.255
    permit ip 10.24.96.0 0.0.0.255 10.80.102.0 0.0.0.255
    permit ip 10.24.96.0 0.0.0.255 10.80.103.0 0.0.0.255
      permit ip 10.24.96.0 0.0.0.255 10.24.69.0 0.0.0.255
    permit ip 10.24.96.0 0.0.0.255 192.168.15.0 0.0.0.255
    From this router's LAN interface (10.24.96.1), I couldn't ping the router's LAN interface corresponding to the Grovecitypeer which is x.x.x.x. The LAN interface at Grovecity is 10.80.103.3
    As soon as I removed the statement " permit ip 10.24.96.0 0.0.0.255 10.80.103.0 0.0.0.255" which was unnecessarily present in the To_Datacenter ACL, things started working.
    What confuses me is since the crypto map vpnmap for Grovecity is at sequence 6 and is before the vpnmap for Datacenter, the statement "
    permit ip 10.24.96.0 0.0.0.255 10.80.103.0 0.0.0.255" under the To-Datacenter ACL would never be considered and it doesn't matter if that staement is present in the ACL or not but apparently it does. HAs anyone faced this before or am I missng something?
    Thanks
    Mukundh

    Hi,
    In order to successfully build a SA, the L2L peers need to exchange the same exact ACE (mirror of each other) along with other parameters like the transform-set, PFS group (if configured)...
    Otherwise Phase II does not come up.
    Thanks.
    Portu.
    Please rate any helpful posts.

  • MPLS Info with ATM Cloud

    Hello. I am not to well versed in MPLS but would like to know if there is something that provides the PRO's and CON's to MPLS plus learning a little something to be able to help. I have a client that just moved into a ATM cloud with an ISP and they have some 75xx, 73xx, and 38xx routers and wants some documentation on cost, feasability, and if it's worth the effort. Anything would be helpful.
    Thanks

    I think the best thing to do at this point is to familiarize yourself with MPLS. A good starting point would be www.cisco.com/go/mpls, which contains a wealth of information pertaining to MPLS.
    Hope this helps,

  • IAd Integration with DPS

    Is it possible to integrate the iAd mobile advertising network to the Single Edition version of DPS?

    AFAIK DSP has part of the production workflow NOT inside InDesign, so also InDesign Server alone can not be used to produce a digital magazine automatically. So its not about blocking, but having a better integration of the different parts into basic InDesign.
    Whether this will happen in the near or medium to far future (CS6, CS7...) we all don't know, but if they were integrated they possibly would be available in InDesign Server API/SDK too, as the code base is pretty much the same (except for the whole Java interfacing).
    IMHO InDesign will NEVER integrate all these production steps, as DPS is a lot about multimedia production workflow. A workflow system aka Woodwing for instance therefore is a wise solution to look at. Especially, as you can start at as low as €169 monthly with Enterprise 7 for DPS integration (in the near future with Enterprise 7.5).

  • Font issues with ATM and new O/S install

    I have had to reformat my h/d and now have issues with fonts. I see that I have several different versions of Minion and Myriad installed on my PC, when viewing through both the windows font manager and ATM, yet these same versions are not availble to me when I am in Pagemaker or Word. I suspect it has to do with Multiple Masters but I am unsure how to fix the problem. Any ideas?

    Multiple master fonts can still be happily used with XP, but Vista doesn't support them or ATM (which is needed to use them). (There is apparently a workround to install MM fonts on Vista, but I haven't read much about it.)
    Anyway, have you installed the multiple master fonts? You've listed the OpenType versions but don't say if you've installed the MM versions. If you haven't, you'll get substitution in files originally created with those fonts. If you have, you still may not have created the specific custom instances used in the files, in which case you'll have to use ATM to create those instances.

  • L3 MPLS-VPN with ATM Interfaces

    Hi
    I tacked a L3 MPLS-VPN from a MPLS service provider.My VPN have three points.
    In first point, I have a PA-A3-OC3 over cisco router 7206. how can I config to place PVC1/2 into VPN?

    You need that pvc to be under a separate sub-interface and then you can configure "ip vrf for " under that sub-interface.
    Hope this helps,

  • I need help with iAD/App development!

    So I released an app, and it went on sale yesterday on the App Store (free app: if you want it, the developer name is Abdulrahman Ahmad, and the game name is Space Defense), but I'm having some problems. When I was testing the app (on an iPhone, and on the xCode Simulator), the ads were working, and I was getting "You're iAD is configured correctly (or whatever the test ads say)" but now that the app has finally released, no ads are appearing (but iTunes Connect says that the ads are live?). Also, I released 2 different versions of the app (2 downloads, 1 was optimized for 5 inch screen, one for 3.5 in (just figured out how to make it one app, that'll be coming out in the update), and when I was looking at my iTunes Connect iAD portal, only 1 app was showing up to have adds (the 3.5 inch one doesn't have ads for some reason?):
    SO! Summery if I confused you:
    iAD was working in the testing phase of the app, but not showing up now(even though iTunes Connect says ads are live)?
    And 1 of my apps is not showing up in my iTunes Connect iAD terminal...
    Any and all help appreciated!
    Thanks in advance!

    RE: Nevermind, i guess it takes a day or so for ads to finally start showing, and i guess i forgot to check off iad compatibility with the second app!

  • The skype chat i had with peterT

    People might be intrested
    Their some personal chatter going on also.
    Anyway in chat was promised update on situation but nothing ever came.
    Now we still have no update on situation so i figure out i post chat log here to show on which side peterT is.
    My name being anonymous obviously changed with my name with word to swap my name.
    anyway chat log below.
    Maybe now we get answer.
    [15-3-2013 01:42:00] Peter Tat: Hello Anonymous, I'd like to add you as a contact.
    PeterT
    [15-3-2013 01:42:18] Anonymous: Anonymous heeft contactdetails gedeeld met Peter Tat.
    [15-3-2013 01:42:27] Peter Tat: Hello Frank
    [15-3-2013 01:42:28] Anonymous: Hey their
    [15-3-2013 01:43:05] Anonymous: thought was strange btw but i noticed something if i have more tabs open in background in the stock browser app for example, then i have more free ram when outside browser
    [15-3-2013 01:43:11] Peter Tat: I'm downloading Chrome browser right now
    [15-3-2013 01:43:27] Anonymous: their chrome beta browser asswell thats even more likely to cause shutdowns
    [15-3-2013 01:43:48] Anonymous: because chrome beta is much faster responds much better probably take more usage also
    [15-3-2013 01:44:20] Peter Tat: I don't see the beta on my play store
    [15-3-2013 01:44:27] Anonymous: https://play.google.com/store/apps/details?id=com.chrome.beta
    [15-3-2013 01:44:31] Anonymous: thats the link
    [15-3-2013 01:44:32] Peter Tat: i'm installing the right from March 8th 203
    [15-3-2013 01:44:41] Anonymous: its somehow hidden when i manuely search it maybe beta ending soon
    [15-3-2013 01:45:36] Anonymous: i think flash it self uses lot ram on top with video play thru flash player eats most ram probably, btw heared some guy have these shutdowns while downloading files also.
    [15-3-2013 01:46:04] Anonymous: i think playing 1 video will just stay in ram all the time then downloading few files will keep adding up till it crashes.
    [15-3-2013 01:46:16] Peter Tat: nope
    [15-3-2013 01:46:23] Peter Tat: must likely due to a region issue
    [15-3-2013 01:46:28] Peter Tat: for the beta version
    [15-3-2013 01:46:29] Anonymous: one guy even mentioned having these issues lot more when having wifi enabled but that could just be due more trafic
    [15-3-2013 01:46:37] Anonymous: chrome beta ?
    [15-3-2013 01:46:44] Anonymous: https://play.google.com/store/apps/details?id=com.chrome.beta can you see this link ?
    [15-3-2013 01:47:18] Peter Tat: i'll just test with the official version
    [15-3-2013 01:47:22] Anonymous: if log in same acount as the tablet is logged into then can send a install command from pc for example to tablet
    [15-3-2013 01:48:00] Anonymous: quick ics browser would tbh be best you can set an option to desktop then will always request desktop site
    [15-3-2013 01:48:24] Peter Tat: ok
    [15-3-2013 01:48:26] Anonymous: anyway vimeo.com youtube.com dumpert.com gametrailers.com all sites can test on
    [15-3-2013 01:48:33] Peter Tat: lets try with the ICS browser then
    [15-3-2013 01:48:39] Anonymous: i think knowning its memory issue makes testing lot easy'r
    [15-3-2013 01:48:52] Anonymous: https://play.google.com/store/apps/details?id=net.virifi.android.quickbrowser&feature=search_result#...
    [15-3-2013 01:48:55] Peter Tat: do you want me to open a tab for each one?
    [15-3-2013 01:48:57] Anonymous: thats the link
    [15-3-2013 01:49:04] Anonymous: yeah
    [15-3-2013 01:49:09] Anonymous: guess thats fine
    [15-3-2013 01:49:20] Peter Tat: wait
    [15-3-2013 01:49:28] Peter Tat: can we try with the preinstall browser?
    [15-3-2013 01:49:31] Anonymous: tablet should remain stable even if have 100 tabs open the other 99 tabs should be cached anyway
    [15-3-2013 01:49:35] Anonymous: the stock sony app ?
    [15-3-2013 01:49:40] Peter Tat: yup
    [15-3-2013 01:49:42] Anonymous: yeah just request desktop site tough
    [15-3-2013 01:49:53] Peter Tat: ok
    [15-3-2013 01:50:03] Peter Tat: let me switch to desktop view on the stock browser
    [15-3-2013 01:50:14] Anonymous: don't use the mobile site if it asks what app to use keep clicking browser like on youtube get app in list youtube.
    [15-3-2013 01:50:25] Anonymous: you can just play video thru flash in youtube for example
    [15-3-2013 01:51:12] Anonymous: anyway i think the trick is to just play video let it buffer quite a bit then start new video let it buffer a bit then repeat that few times thru different sites and even different video players
    [15-3-2013 01:51:43] Anonymous: as for playing video's on stock apps or third party i think they should be big like least 10 minuts
    [15-3-2013 01:54:10] Anonymous: already re produced error loading 1 video btw
    [15-3-2013 01:54:16] Anonymous: can turn on webcam show you
    [15-3-2013 01:54:35] *** Gesprek met Peter Tat ***
    [15-3-2013 01:55:05] Anonymous: all blocky and repeating
    [15-3-2013 01:55:12] Anonymous: like same last 10 frames
    [15-3-2013 01:56:14] Anonymous: hate this so much
    [15-3-2013 01:56:39] *** Gesprek beëindigd, duur 02:03 ***
    [15-3-2013 01:56:51] Anonymous: that was just 1 youtube vid but ofc normaly i don't do this from browser
    [15-3-2013 01:57:16] Anonymous: but other sites don't have an app or html5 player so disabling flash ain't always a option
    [15-3-2013 01:57:53] Anonymous: oh lemme correct that was 2 video's if played total
    [15-3-2013 01:58:29] Peter Tat: still trying to repro
    [15-3-2013 01:58:39] Anonymous: played a little off this video http://www.gametrailers.com/videos/6luwrm/bioshock-infinite-false-shepherd-trailer
    And then http://www.youtube.com/watch?v=DQxZSiaDZ6g
    [15-3-2013 01:58:56] Anonymous: you did re produce already right on xperia tablet s aka trying re produce on tablet s1 ?
    [15-3-2013 01:59:14] Peter Tat: yes I was able to reproduce it on the xperia tablet
    [15-3-2013 01:59:23] Anonymous: i think downloading lot files might be key
    [15-3-2013 01:59:27] Peter Tat: I fast forward , rewind, etc
    [15-3-2013 01:59:42] Anonymous: yeah don't even have to do that btw to re produce it i figured out now
    [15-3-2013 01:59:46] Peter Tat: I had no luck on the Tablet S
    [15-3-2013 02:00:00] Anonymous: just takes buffering 1 full lengty vid after that sticks to ram like glue no way to clear it
    [15-3-2013 02:00:15] Anonymous: Just thinking
    [15-3-2013 02:00:21] Anonymous: in data usage
    [15-3-2013 02:00:28] Anonymous: let people screenshot their data usage
    [15-3-2013 02:00:42] Anonymous: that should give clear idea maybe whats causing this
    [15-3-2013 02:00:51] Anonymous: the app with highest data usage likely have issues
    [15-3-2013 02:01:08] Anonymous: Or well could be
    [15-3-2013 02:01:21] Anonymous: doubt apps with low data usage are causing it
    [15-3-2013 02:01:50] Anonymous: Not been playing video's at all lately my data usage is facebook 10 gb lol 2e beam app 4.21gb
    [15-3-2013 02:02:17] Peter Tat: how long did you play the video before the issue occurs?
    [15-3-2013 02:02:27] Anonymous: like 2 3 minuts
    [15-3-2013 02:02:48] Anonymous: i am on 5GHZ wifi network so video downloads with 40 Mbit per sec
    [15-3-2013 02:03:13] Anonymous: so ram fills up lot faster with faster internet causing issue to be more common probably
    [15-3-2013 02:03:31] Peter Tat: s1 should be 2.4
    [15-3-2013 02:03:39] Anonymous: y
    [15-3-2013 02:04:21] Anonymous: xperia tablet s has 5g i did't even known i was happy tough when i found out could get my netgear router out again that was collecting dust
    [15-3-2013 02:05:58] Anonymous: even google maps btw could cause a shutdown i think that acces demuxer also
    [15-3-2013 02:06:19] Anonymous: https://play.google.com/store/apps/details?id=com.xtralogic.android.logcollector&feature=search_resu...
    [15-3-2013 02:06:29] Anonymous: can try that app use tablet like normaly would with heavy usage etc
    [15-3-2013 02:06:31] Anonymous: then send a log
    [15-3-2013 02:06:45] Anonymous: error might pop in log giving better understanding
    [15-3-2013 02:07:07] Anonymous: if did't find out about demuxer i would never understand why every video player app had issues
    [15-3-2013 02:08:53] Anonymous: is memory management programmed btw per category btw like browser video player apps games etc ?
    [15-3-2013 02:09:17] Peter Tat: its program into the board
    [15-3-2013 02:09:24] Peter Tat: think of it as the BIOS
    [15-3-2013 02:09:32] Peter Tat: and the OS interacts with it
    [15-3-2013 02:09:45] Anonymous: i'm not a programmer btw do have verry good technical insight tough
    [15-3-2013 02:09:52] Anonymous: yeah well bios can be programmed
    [15-3-2013 02:10:15] Anonymous: even like a router
    [15-3-2013 02:10:37] Anonymous: i love bricking my netgrear router done this mil times then unbrick it messing with custom firmware
    [15-3-2013 02:10:48] Anonymous: stock is most stable tough i found out since got xperia tablet s
    [15-3-2013 02:10:59] Peter Tat: I am not a low level programmer
    [15-3-2013 02:11:04] Anonymous: my advanced wifi lock will disable wifi if loses signal
    [15-3-2013 02:11:06] Peter Tat: i do mostly powershell
    [15-3-2013 02:11:07] Anonymous: yeah understood that
    [15-3-2013 02:11:22] Anonymous: or hmmm maybe i don't
    [15-3-2013 02:11:36] Anonymous: but i guess not respondsible for jelly bean
    [15-3-2013 02:11:44] Anonymous: else i would be certain it would come out by now
    [15-3-2013 02:11:47] Peter Tat: low level programming is like C or C++
    [15-3-2013 02:11:56] Peter Tat: Android developers are Java programmers
    [15-3-2013 02:12:12] Peter Tat: Java is not low level
    [15-3-2013 02:12:19] Peter Tat: it is more on the surface of programming
    [15-3-2013 02:12:35] Peter Tat: kind of like C# but C# is for Windows base
    [15-3-2013 02:12:45] Anonymous: hardcore stuff making apps programming set off rules etc optimisations
    [15-3-2013 02:12:58] Anonymous: i wish i learned programming languige
    [15-3-2013 02:13:12] Anonymous: but i had horrible parrents that never send me to proper school
    [15-3-2013 02:13:38] Peter Tat: you can learn online
    [15-3-2013 02:13:39] Peter Tat: for free
    [15-3-2013 02:13:44] Anonymous: yeah i known
    [15-3-2013 02:13:53] Anonymous: Just don't have motivation anymore
    [15-3-2013 02:13:56] Anonymous: i'm 28 years old
    [15-3-2013 02:14:10] Anonymous: i quit school at age 12 bassicly actualy if never had any decent school at all
    [15-3-2013 02:14:28] Anonymous: bullied on school neglected and abused at home etc horrible childhood
    [15-3-2013 02:14:36] Peter Tat: i am sorry to hear that
    [15-3-2013 02:14:46] Anonymous: while having autism learning to become more social with squeeker voice imposible >_<
    [15-3-2013 02:15:05] Peter Tat: you can do anything you put your mind into it
    [15-3-2013 02:15:11] Peter Tat: don't let anyone tell you otherwise
    [15-3-2013 02:15:12] Anonymous: extreme bullie'ng even like throwing some one right in front off a truck thats aproaching or etc
    [15-3-2013 02:15:28] Anonymous: yeah well i need little help from outside with problems i just can't deal with atm
    [15-3-2013 02:15:40] Anonymous: structure etc and motivation
    [15-3-2013 02:16:01] Anonymous: motivation can be easy if i can make it intrest me more
    [15-3-2013 02:17:18] Anonymous: find strange btw now actualy that the tablet s1 have this issue just as much but way more different.
    [15-3-2013 02:17:22] Anonymous: its bassicly the same firmware
    [15-3-2013 02:18:08] Peter Tat: different hardware
    [15-3-2013 02:18:15] Anonymous: actualy its about same
    [15-3-2013 02:18:20] Anonymous: just dual core
    [15-3-2013 02:18:24] Anonymous: nvidia tegra 2
    [15-3-2013 02:18:30] Anonymous: xperia tablet is is nvidia tegra3
    [15-3-2013 02:18:49] Anonymous: google nexus 7 is also nvidia tegra3 i think sony is kindy lucky that google picked same chipset
    [15-3-2013 02:18:55] Peter Tat: wifi card is different as well
    [15-3-2013 02:19:00] Anonymous: save's lot time
    [15-3-2013 02:19:06] Anonymous: minor stuff
    [15-3-2013 02:20:00] Peter Tat: hm.
    [15-3-2013 02:20:07] Peter Tat: still didn't repro
    [15-3-2013 02:20:35] Anonymous: took me like 2 hours first time when i tryit re produce
    [15-3-2013 02:20:57] Anonymous: like their some cache that needs to be build up or something that can't be cleared
    [15-3-2013 02:21:21] Anonymous: normaly their is app cache their is an app that clears all app cache at once, but never helped me
    [15-3-2013 02:21:24] Peter Tat: I know my OS development team was able to reproduce the issue
    [15-3-2013 02:21:31] Peter Tat: but i'm waiting for their steps
    [15-3-2013 02:21:41] Peter Tat: they inform me that the repro is super low
    [15-3-2013 02:21:49] Anonymous: i think sony has stabbed them self in the foot releasing android 4.0.3 for tablet s1
    [15-3-2013 02:21:49] Peter Tat: like rare low
    [15-3-2013 02:22:13] Anonymous: think jelly bean will come out personaly for tablet s1
    [15-3-2013 02:22:25] Peter Tat: I am fighting for it right now
    [15-3-2013 02:22:33] Anonymous: its just takes more time probably if they have to start all over again with just android 4.0.4 update that might also fix it
    [15-3-2013 02:22:42] Peter Tat: but I can't make any promise at this moment
    [15-3-2013 02:23:19] Anonymous: if they can't fix these issues even on xperia tablet s for some reason hope sony do step up program
    [15-3-2013 02:23:30] Anonymous: i just like the universal remote
    [15-3-2013 02:23:35] Peter Tat: it will be fix for the xperia tablet
    [15-3-2013 02:23:47] Anonymous: otherwise i end up buying a nexus 7 for normal use xperia tablet s will be just expansive remote
    [15-3-2013 02:23:49] Peter Tat: it was already confirm by our Qality Assurance team
    [15-3-2013 02:23:54] Anonymous: yeah they say but i kindy am worried
    [15-3-2013 02:24:06] Anonymous: like issue become less common but will still exist
    [15-3-2013 02:24:19] Anonymous: if it happends like maybe once a month i can life with anything more is to much
    [15-3-2013 02:24:33] Anonymous: if got a pc thats 100% rock stable overclocked watercooled
    [15-3-2013 02:24:44] Anonymous: not a single random freeze bsod in like 4-5 years
    [15-3-2013 02:25:11] Anonymous: kindy issues i run into are usualy os related and i always fix them my self.
    [15-3-2013 02:25:43] Anonymous: its just easy to back track find cause and fix asuming you're also respondsable for that error
    [15-3-2013 02:25:51] Anonymous: else just takes little bit longer
    [15-3-2013 02:25:58] Anonymous: some google research usualy is easy
    [15-3-2013 02:26:17] Peter Tat: PC fix is must easier...
    [15-3-2013 02:26:21] Peter Tat: than Android
    [15-3-2013 02:26:27] Peter Tat: at least from my experience
    [15-3-2013 02:26:59] Anonymous: i think android is easy to asuming their no firmware issues
    [15-3-2013 02:27:14] Anonymous: If an app is causing problems android log will tell
    [15-3-2013 02:27:41] Anonymous: i wish i could manage to run java applet on my tablet btw
    [15-3-2013 02:27:53] Anonymous: i have jsscreenfix applet that unstuck pixels but can't make it run lol
    [15-3-2013 02:28:21] Anonymous: recording a video with that don't work either it needs to be uncrompressed or it will have lot corrupt blocks
    [15-3-2013 02:28:26] Anonymous: not the one that caused by tablet btw
    [15-3-2013 02:28:31] Anonymous: just be re encoding
    [15-3-2013 02:28:50] Peter Tat: I have meeting coming up
    [15-3-2013 02:28:54] Anonymous: oke
    [15-3-2013 02:28:54] Peter Tat: i have a meeting coming up
    [15-3-2013 02:29:11] Peter Tat: i will also have a meeting with my OS dev team on Wednesday next week
    [15-3-2013 02:29:21] Peter Tat: I will try to get as much info from them for the S1
    [15-3-2013 02:29:39] Peter Tat: I will also hammer on the Jelly Bean release to make sure it resolve the Xperia shut down issue
    [15-3-2013 02:29:43] Peter Tat: and yes you are right
    [15-3-2013 02:29:48] Peter Tat: we should be faster on the OS release
    [15-3-2013 02:29:50] Anonymous: They should release quick fix asap if jelly bean indeed can't be released sooner
    [15-3-2013 02:29:56] Peter Tat: I am trying to fix this process
    [15-3-2013 02:30:04] Peter Tat: it is mostly due to a resource issue
    [15-3-2013 02:30:09] Anonymous: the tablet is great has lot potential
    [15-3-2013 02:30:20] Anonymous: the tablet z is also great but missed oppurtunity >_>
    [15-3-2013 02:30:30] Anonymous: no glass back not as sturdy lol
    [15-3-2013 02:30:39] Peter Tat: the problem is that there are less engineers
    [15-3-2013 02:30:42] Peter Tat: but more products
    [15-3-2013 02:30:43] Anonymous: saw tweakers.net video 1 thumb on corner it would bend easy with like no force
    [15-3-2013 02:30:48] Peter Tat: we're all working 12 hours a day or more
    [15-3-2013 02:30:49] Anonymous: agree
    [15-3-2013 02:30:52] Anonymous: i noticed that
    [15-3-2013 02:31:10] Anonymous: even cheap budget phone with android 4.1 but tablets still all are on ics wtf lol
    [15-3-2013 02:31:13] Peter Tat: i'll update to after my converstation with the OS dev team
    [15-3-2013 02:31:19] Peter Tat: i know
    [15-3-2013 02:31:19] Anonymous: thats great
    [15-3-2013 02:31:28] Peter Tat: phone and tablet OS should the same time
    [15-3-2013 02:31:33] Peter Tat: and early
    [15-3-2013 02:31:49] Anonymous: xperia z is to expansive atm if it drops to 400€ i defiantly buy considering it have no issues
    [15-3-2013 02:32:19] Anonymous: i have cheap alcatel smartphone now with gingerbread which actualy play video's without ever crashing
    [15-3-2013 02:32:28] Peter Tat: ok frank. i'll talk to you soon
    [15-3-2013 02:32:29] Anonymous: 45€ phone
    [15-3-2013 02:32:32] Peter Tat: thank you for trying to help out
    [15-3-2013 02:32:38] Anonymous: np
    [15-3-2013 02:36:49] Anonymous: you did good job btw as community manager btw
    [15-3-2013 02:37:12] Anonymous: i thought you re created issue your self but to get the devs to re produce it
    [15-3-2013 02:37:35] Peter Tat: no
    [15-3-2013 02:37:50] Peter Tat: the devs reproduce the issue on the s1 but i think it was like 1/10000
    [15-3-2013 02:37:52] Peter Tat: time or so
    [15-3-2013 02:38:11] Peter Tat: i am trying to prove to our OS team that the customer sees this issue more frequently
    [15-3-2013 02:38:13] Anonymous: did devs re produce xperia tablet s issues ?
    [15-3-2013 02:38:16] Peter Tat: yes
    [15-3-2013 02:38:28] Peter Tat: they can reproduce the Xperia Tablet very easy
    [15-3-2013 02:38:37] Anonymous: they should add functionality that helps them out btw maybe
    [15-3-2013 02:38:38] Peter Tat: like 8/10 times
    [15-3-2013 02:38:43] Anonymous: that send logs once in a while to them
    [15-3-2013 02:38:52] Anonymous: error logs etc so they can see what kindy issues customers have
    [15-3-2013 02:38:56] Peter Tat: i'll check with them
    Solved!
    Go to Solution.

    It shows Peter's doing its jobs properly.
    Anyway there is no more communication from Sony since awihle. If you can have any news.
    Anyway good job Zero!

  • ATM Back bone.Cisco VS Nortel which is better

    I have a situation whr i need to connect 7 different sites together with ATM. I have STM 4 as back bone and some place PDH E3 and E1, I am looking at cisco product with following configuration.
    1). 4 XSTM 1
    2). 5 XE3
    3). 8 XE1 Data
    4)9 XE1 Voice.
    5 8 X1000Mbps.
    The switch should support 2000 PVC, SVC s
    Minimum of 100 Point to Multipoint connections.
    I have Nortel 6480 Paasport. But i am looking for cisco products. What do ya suggest from you experince. n what is equvalent of nortel 6480 in cisco.

    The reason I asked about buffer size is because I was having a problem with gapless playback. In iTunes I had my tracks all set up for gapless playback and they would play just fine there (seamlessly), but on my iPod I would sometimes get little mini-pauses between tracks when tranistioning from one to the next but others would trnasition just fine --- and on top of that I didn't always get the same result between the same two tracks ! In addition, I would also occaionally get longer pauses in the middle of a track. This would hapeen with both Lossless and WAV formats, and oddly enought it seemd to be more frequent with the Lossless format. I talk with Apple Tech Support about it and asked them if it could be either the cache size or how the cache is being managed internally, and they said no the cache size and how it's managed should be able to account for the extremes of many little tracks being queued up in it vs. only part of one large track being able to fit. Bottom line, they said you should be able to experience gapless playback no matter what the size of your individual tracks are, and the cache should be able to properly manage things. So they seemed to think it was the hard drive itself failing and recommended just swapping out for a new unit since it was in warranty.
    I haven't re-loaded my iPod yet since getting the replacement because I was wanting to first find out about the differences between the file formats that I initially asked you all about. I'll let you all know if I experience any more problems with gapless playback on the new unit.

  • IAd Producer Switch Object

    Hello All,
    I'm attempting an iBook for my school, and I would like to add a widget to this book. In this widget I have an anatomical drawing, and I would like to use the switch object to toggle arrows on specific structures. I've been successful in getting the arrow to appear by setting the activated state of the switch to call an action whereby the arrow displays, however, there is no option for me to set the inactivated event, to "un-display" the arrow, on the object.
    I need a bit of javascript to determine the state of the switch, so I can call the appropriate action list, but I have absolutely no idea how this is accomplished. I have zero experience with javascript.
    any help is most appreciated.
    best regards.

    Hello,
    Your best option would be to listen to the iAd.Switch onControlValueChange method and check the value of the on attribute to determine whether to show the arrows or not.  Pseudocode follows, but you will need to tweak to suit the rest of the widget.
    Include in JavaScript for the switch control (click the "Code" button at bottom of iAd Producer with switch selected):
    this.onControlValueChange = function (event) {
        if (this.on) {
            this.viewController.showArrows();
        else {
            this.viewController.hideArrows();
    What the show/hideArrows methods do are up to you.  You could grab each of the arrows and change the visibility of the arrow.
    Best of luck,
    Josh

  • Beware the evils of ATM

    As most of you know I was having problems getting escript to connect to
    local environments on a UNIX 9000 ver. B.10.20 Central Server. The jist of
    the story is I could use escript to connect
    to any environment on another similar UNIX Central Server, but when going
    to a local environment it would hang up on the trace line just before the
    escript> prompt.
    We found the problem was with the configuration of an ATM network card. Our
    Network Guru's explained it to me this way:
    By default ATM uses Classical IP. I am told the main difference between
    Classical IP and what ethernet uses is Classical IP has a larger packet
    size. ATM could be configured to use ELAN which is supposed to be more in
    line with ethernet. I am told that ELAN may or may not fix the problem, we
    are not sure. We are going to take the
    "If it is not broken don't fix it"
    approach and stick with ethernet. To-date network speed has not been an
    issue. If in the future we find that we need the speed that comes with ATM
    we may experiment with ATM and ELAN then.
    PS
    If anyone out there use a similar UNIX box as a Central Server with ATM and
    ELAN I'd like to know how everything is working.
    Kelsey PetrychynSaskTel Forte System Administrator
    ITM - Business Solns-consult Stds & Support
    Tel (306) 777 - 4906, Fax (306) 359 - 0857
    Internet:[email protected]

    Quote from: meta_sin on 09-February-06, 01:39:11
    maybe because its an ecs tool?
    let me get this straight. are you using the software from the ecs mobo to flash your msi bios?  ??? if yes, just lay off the beer. 
    for info on how to flash the bios read the stickies in the bios section of the forum.

  • Adobe Type 1 Font is not compatible with Windows 8 64bit?

    I found that Adobe Type 1 fonts are not compatible with applications that run on Windows 8 64bit. When used, the appearance of fonts on the screen is not correct. Even worse, the font does not appear at all in the CorelDRAW X6. Strangely, when printed, the fonts were no problems. How can I make these fonts can be used in Windows 8 64bit? For additional information, these fonts appear normally when reviewed through the Windows Fonts folder, but does not display correctly when used in the application.

    I believe I have a similar issue. I do have the latest Windows updates.
    I'm on a new Win8 system, and I installed my Adobe type collection (bought years ago with ATM) by copying the .pfm and .pfb files to Windows\Fonts (there's no right-click > install for fonts on Win8 it seems; copying the font files to the font directory is what I've read as the install procedure.)
    Windows then shows an error about .pfb incompatibility, so I selected "skip" for those files.
    The result is that my fonts are installed and usable BUT this really screws up IE10 for certain websites. For example, I get blank pages for sites like wordpress.org and validator.w3.org. There doesn't seem to be any way to fix this other than doing a system restore to a point before the fonts were installed. Removing the font files from the Windows\Font directory doesn't help. I don't use IE10 with any regularity but I need it to work for testing purposes.
    Is there a way to install these fonts? Is there a way to uninstall them (other than a system restore) if they affect IE10?
    It's really hard to install on a one-by-one basis as need arises because I can't tell what the font names are from the file names. There's no application, like a type viewer, that will show me the fonts if I double click the file. (I just ran into this now... I need to use a Garamond type face but have no idea which one it is by looking at the .pfm and .pfb files.)
    I would consider buying Font Folio if this is the answer but it's only available for a minimum of 5 licenses? I'm a freelancer and only need one licence.
    Should I just use an online tool to convert my .pfm/.pfb files to an OpenType or similar format?
    Thank you in advance!

  • ATM Light and Missing Fonts in Designer

    When I try to open pdf files created on my computer in Designer, it suggests that all of the fonts are not in my system and wants to replace them. Of course they are there, they were just applied to text in the design program before I made the pdf file. I have ATM Light installed to manage fonts on my Windows 2000 computer. I'm wondering if others with ATM Light see the same behaviour. I've read that fonts need to be in the system fonts or designer subdirectory in order for them to be used by Designer. With ATM Light, I am able to store fonts anywhere on my computer and have Photoshop, InDesign, Illustrator, etc use them with no trouble. Is this not the case for Designer?

    For some reason i tried booting in safe mode before i wanted to reinstall things. And in safe mode everything was ok, all the fonts were working, menus were ok etc.
    So i went back into normal mode and it looks quite ok, but context menus are still missing fonts and even more odd... when i'm in fontbook for example the finderbar has the default font, but in safari and finder itself the font changes to something old again.
    I'm kind of scared to reinstall and archive things because i have lots off settings for wireless printers and internet locations on my mac school set for me. And i think i cannot really move those files back and let them work after the install...

  • Product Announcement: ATM Light 4.1 Now Posted

    Hello -
    ATM Light 4.1 for Windows has just been posted on the adobe.com web site for free download. If you do not require the font management features that ATM Deluxe supplies, then this is the download you need. Note, the file size is about 12.7 megabytes to accomodate the universal installer.
    http://www.adobe.com/support/downloads/atmwin.htm
    If you are an ATM Deluxe 4.0 user, *do not* download this installer as it is incompatible with ATM Deluxe. ATM Deluxe 4.0 users who wish to upgrade to ATM Deluxe 4.1 must purchase the upgrade available for $29. via . This phone number is for upgrades only and the upgrade package does not include a serial number.
    Chris Holm, Adobe Systems Inc.
    Features
    * Rasterization for Type 1 and PostScript OpenType fonts.
    * Universal installer automatically installs the proper version of ATM for the version of Windows you are using (Win 95/98; Win NT4; Win 2000).
    * Downloads available for 12 languages, including Japanese.

    >This is not directly relevant to Jean's problem, but I for one would like to know the mechanics of how Windows 98, Me, etc makes PostScript fonts available to applications?
    Well, unaided it doesn't. ATM makes it able to do this. Essentially,
    ATM "hooks into" Windows so that at critical points, more fonts are
    available. That is if one part of Windows asks another "list all
    available fonts", it adds more to the list. Of course, it has to do
    much more, concerned with actually displaying or printing the font
    when the application chooses to use it, but it is all done with hooks.
    This applies only to pre-NT systems (95/98/Me).
    >
    > the main function of font management programs is to give users the opportunity to load only required fonts into memory leaving those not required sitting out on disc. N
    Not really. Firstly, a loaded font isn't entirely in memory. The
    amount of memory used is by today's standards trivial. Managing fonts
    is necessary because these all systems, but especially these
    old-fashioned ones, have limits. For instance, the file names of all
    fonts are listed in several places that are limited to 64K and cannot
    be increased. In addition, it may benefit the end user by limiting
    font selection to relevant fonts, and speeding up the selection
    process.
    Remember: ATM Deluxe is a font manager in this sense. ATM Lite is not.
    There is also auto-activation. This relies on the fact that almost
    all applications will try to use a font without first checking if it
    is available. Normally, if a font is not available, Windows picks a
    substitute. But with ATM, it can see the request coming and activate
    the named font. This function relies on hooks that do not exist in
    Windows NT systems.
    >I note that application software developers are responsible to detect the fonts available in memory when his/her application loads (EnumFontFamilies, EnumFonts)
    These are exactly the sorts of place where ATM adds hooks. Not all
    applications do this (only) when the application loads, but those
    which do may be unable to detect when fonts are added.
    Aandi Inston

  • Question about iAd integration.

    Hi,
    I am trying to setup iAd in my new app and am thoroughly confused. Some direction will be very appreciated.
    Here's what I've done so far:
    1. Signed up at Itunes Connect for iAd Network. Put in request for the appropriate contract change and such
    2. Pulled in the iAd.framework in the xcode project
    3. Pulled in the iAd Banner view in the XIB file for the root view controller. Not sure if the connections have to be made in the IB!?
    4. Designated that view controller to be the delegate (ADBannerViewDelegate) for the iAd
    5. Added code for the delegate methods in the view controller
    6. Created the developer profile for the app and installed it in xcode.
    When the app runs (device or simulator), I get "Test Advertisement" with Apple logo in the iAd banner. I don't see the real advertisements, but see the following messsage(s) in the Xcode console:
    ADBannerView: Unhandled error (no delegate or delegate does not implement didFailToReceiveAdWithError:): Error Domain=ADErrorDomain Code=5 "The operation couldn’t be completed. Banner view is visible but does not have content" UserInfo=0x61401b0 {ADInternalErrorCode=5, NSLocalizedFailureReason=Banner view is visible but does not have content}
    * The delegate has implemented the method that the above message talks about. What have I missed?
    * Do I have to enable the iAd network for this new app in iTunes Connect? How do I do that? The instructions are sparse or missing there.
    * While on the related topic, I have one more question. How does iAd work for an app with multiple View Controllers? Do all of them have to be declared as iAd delegates with duplicate code?

    You'd have more luck in the iOS/iAd forums, I think
    https://devforums.apple.com/community/ios/iadproduction

Maybe you are looking for