Ip cam inaccessible aucun port ouvert
Répondre à la discussion
Affichage des résultats 1 à 11 sur 11

Ip cam inaccessible aucun port ouvert



  1. #1
    Foulek57

    Ip cam inaccessible aucun port ouvert


    ------

    Bonjour,
    J'espère poster dans la bonne section.

    J'aurai besoin de votre aide j'ai 2 caméra de marque cacagoo.
    Je recherche un moyen d'avoir un lien rstp ou autre afin d'intégrer cette caméra dans ma box domotique Jeedom.
    Le problème est que je n'arrive pas a mettre la main sur un flux vidéo, même pas une interface web rien.
    J'ai remarqué que la base est fabriqué par yi technologie.

    J'ai bien-sûr fait quelques recherches ça fait une semaine que je me casse la tête...
    J'ai tenté de récupérer quelque chose avec wireshark, tout ce que j'ai est des échanges en UDP crypté donc rien de lisible...
    J'ai ensuite voulu tenter avec un script pour récupérer les données avec onvif car j'ai pu lire que les caméra YI était avec onvif.
    Encore un échec car impossible de trouver le port pour m'y connecter
    Du coup je fait un coup de nmap pour trouver les port ouvert sur l'IP de ma camera, résultat aucun port ouvert. Je me demande même comment j'arrive a avoir un flux sur l'application...
    J'ai aussi tenté de décompiler l'apk pour trouver des infos, résultat nean... J'ai peut être pas les bons outils je ne m'y connais pas en reverse engineering...

    J'ai ensuite voulu voir pour mettre un autre firmeware qui aurait les port ouvert avec un flux rstp mais je ne trouve aucune information sur cette caméra !

    Je ne sais plus quoi faire j'ai deux caméra que je ne peux que visualiser par l'application et le logiciel PC en passant pas leurs serveurs chinois (en qui je n'ai pas une confiance aveugle)

    Je le tourne donc vers vous les pro pouvez vous m'aider ?

    Nom de l'application Android : YI IOT

    Ci-joint quelques photos des composants
    IMG_20191212_223812.jpg
    IMG_20191212_223856.jpg
    IMG_20191212_223907.jpg
    IMG_20191212_223716.jpg
    Screenshot_2019-12-15-23-38-20-290_com.amazon.mShop.android.shopping.jpg

    -----

  2. #2
    eglyn18

    Re : Ip cam inaccessible aucun port ouvert

    Salut,

    Tu as essayé onvif devices manager ?
    https://sourceforge.net/projects/onvifdm/

    il détecte automatiquement les flux vidéos sur ton lan.

    Sinon, ta caméra récupère j'imagine une IP via ton serveur DHCP déjà, si tu fais un telnet sur le port 80 ou 443 ou 8080 (tu peux tenter le 554, c'est le port rtsp), tu n'as pas de réponse ? ça m'étonne qu'il n'y ait pas d'interface web. Mais bon, je ne connais pas cette marque, plutôt hikvision ou axis.

  3. #3
    hugodu21

    Re : Ip cam inaccessible aucun port ouvert

    Nmap fait un telnet sur tous ou un range de ports donc bon.

    Comment t'as réalisé ta capture wireshark étant donné qu'elle est en wifi et que j'imagine elle est connecté a ta box?

  4. #4
    Foulek57

    Re : Ip cam inaccessible aucun port ouvert

    Bonjour,

    Oui, j'ai essayé avec onvif aussi, aucune cam n'est détecté.
    Oui la caméra est connectée sur mon réseau, avec L'appli il faut présenter un QRcode devant l'objectif et elle se connecte.

    Je na sais pas vraiment me servir de wireshark, donc il y a peut etre quelque chose a faire...

  5. A voir en vidéo sur Futura
  6. #5
    Foulek57

    Re : Ip cam inaccessible aucun port ouvert

    Bonjour,

    Mer revoila à reprendre cette camera... J'ai réussi à me connecter en serial ce qui me donne accès en ligne de commande au systeme linux qui est installé sur la camera.

    J'ai un peu fouillé mais je ne sais pas trop ou et quoi chercher surtout qu'il s'agit d'un linux assez compact avec pas grand chose et je ne m'y connais pas trop en linux...

    Voici ce qui est est dans le dossier /bin/:

    Code:
    amixer              expr                logread             route
    arping              fdisk               ls                  sed
    ash                 fgrep               lsmod               sh
    awk                 find                lua                 sleep
    basename            free                mDNSResponderPosix  sync
    blkid               grep                md5sum              syslogd
    brctl               halt                mdev                tar
    busybox             hd                  mkdir               tftp
    cat                 hexdump             mkdosfs             top
    chmod               hostname            mkfs.vfat           touch
    chown               hwclock             mknod               tr
    cp                  id                  mount               ubus
    crond               ifconfig            mount_root          ubusd
    cut                 init                mv                  udhcpc
    date                insmod              pidof               udhcpd
    dd                  iwconfig            ping                umount
    df                  kill                pivot_root          vi
    dhcprelay           killall             poweroff            watchdog
    dirname             killall5            ps                  wget
    dmesg               klogd               pwd                 which
    dnsdomainname       less                reboot              wpa_cli
    dumpleases          linuxrc             rm                  wpa_supplicant
    echo                ln                  rmdir               xy_stream
    egrep               login               rmmod
    Il y a un fichier init.sh qui est lancé au démarage :

    Code:
    #!/bin/sh
    
    RED="\033[0;32;31m"
    GREEN="\033[0;32;32m"
    YELLOW="\033[1;33m"
    NONE="\033[m"
    
    do_update()
    {
    	if [ -f /tmp/sd/home_r10m ]; then
    		echo "---/tmp/sd/home_r10m exist, update begin---" 
    		/backup/script/update.sh /tmp/sd/home_r10m
    	else
    		echo "---update file(home_r10m) Not exist---"
    	fi
    }
    
    set_audio_switch()
    {
    	echo 9 > /sys/class/gpio/export
    	echo out > /sys/class/gpio/gpio9/direction
    
    	dd of=/tmp/hw if=/dev/mtdblock6 bs=1 skip=168 count=32
    	hw=`cat /tmp/hw`
    	if [ ${hw:6:1} -eq '1' ]
    	then
    		echo "high level enable"
    		echo 1 > /sys/class/gpio/gpio9/value
    	else
    		echo "low level enable"
    		echo 0 > /sys/class/gpio/gpio9/value
    	fi
    	rm /tmp/hw
    }
    
    echo -e ${GREEN}Start ${RED}/home/app/init.sh...${NONE}
    
    export LD_LIBRARY_PATH=/lib:/home/lib:/home/rt/lib:/home/app/locallib:$LD_LIBRARY_PATH
    
    insmod /home/rt/ko/rlx_dma.ko
    insmod /home/rt/ko/rlx_i2s.ko
    insmod /home/rt/ko/rlx_codec.ko
    insmod /home/rt/ko/rlx_snd_intern.ko
    
    insmod /backup/8188fu.ko
    
    insmod /home/rt/ko/rtsx-icr.ko
    
    insmod /home/rt/ko/rts_cam.ko
    insmod /home/rt/ko/rts_cam_mem.ko
    insmod /home/rt/ko/rts_cam_lock.ko
    insmod /home/rt/ko/rts_camera_soc.ko
    insmod /home/rt/ko/rts_camera_hx280enc.ko
    insmod /home/rt/ko/rts_camera_jpgenc.ko
    insmod /home/rt/ko/rts_camera_osd2.ko
    insmod /home/rt/ko/rtstream.ko
    
    #mount tmpfs /tmp -t tmpfs -o size=32m
    mkdir -p /tmp/sd
    
    #fsck.fat need memory, so put checkdisk at the begining
    /home/base/tools/checkdisk
    rm -fr /tmp/sd/FSCK*.REC
    
    set_audio_switch
    /home/app/aacplay /home/app/audio_file/common/poweron.aac 1400 &
    
    ifconfig wlan0 up
    ethmac=d2:`ifconfig wlan0 |grep HWaddr|cut -d' ' -f10|cut -d: -f2-`
    ifconfig eth0 hw ether $ethmac
    ifconfig eth0 up
    
    #ifconfig eth0 192.168.0.168 netmask 255.255.255.0 hw ether 00:11:22:33:44:55
    
    #multi sensor compatible
    ########################################################################
    #try_count=3
    #echo 1 > /sys/devices/platform/rts_soc_camera/loadfw
    #echo 2 > /sys/devices/platform/rts_soc_camera/loadfw
    #sensor_id=
    ##try 3 times
    #while ([ -z "$sensor_id" ] && [ $try_count -ge 0 ])
    #do
    #let try_count--
    #sensor_id=$(cat /sys/devices/platform/rts_soc_camera/sensor)
    #done
    #
    #if [ -z "$sensor_id" ]
    #####old version, use system/lib/isp.fw
    #then
    #	echo -e "use default isp.fw=============== \n"
    #	echo 1 > /sys/devices/platform/rts_soc_camera/loadfw
    #else
    #####new version,load conrrespond isp.fw depend on sensor_id
    #	echo -e "Sensor ===============  $sensor_id\n"
    #	if [ "$sensor_id" == "SC1245" ]
    #	then
    #		echo -n "/home/lib/sc1245/isp.fw" > /sys/devices/platform/rts_soc_camera/loadfw
    #	elif [ "$sensor_id" == "SC2235" ]
    #	then
    #		echo -n "/home/lib/sc2235/isp.fw" > /sys/devices/platform/rts_soc_camera/loadfw
    #	elif [ "$sensor_id" == "SC2232" ]
    #	then
    #		echo -n "/home/lib/sc2232/isp.fw" > /sys/devices/platform/rts_soc_camera/loadfw
    #	elif [ "$sensor_id" == "SC2230" ]
    #	then
    #		echo -n "/home/lib/sc2230/isp.fw" > /sys/devices/platform/rts_soc_camera/loadfw
    #	fi
    #fi
    #######################################################################
    
    #capture DGain
    amixer cset numid=8 127
    #speaker
    amixer cset numid=1 109
    #AGain max:69
    amixer cset numid=11 30
    
    #checkdisk will mount sd on /tmp/sd
    do_update
    
    #touch /etc/resolv.conf
    echo nameserver 8.8.8.8 > /etc/resolv.conf
    mDNSRespoderPosix -n -t _http._tcp. -p 80 -b
    
    echo "/tmp/sd/core.%e.%p" > /proc/sys/kernel/core_pattern
    
    echo 2048 > /proc/sys/vm/min_free_kbytes
    echo 100 > /proc/sys/vm/extfrag_threshold
    echo 1 > /proc/sys/vm/compact_memory
    cd /home/app
    
    ./log_server &
    
    if [ -f "/tmp/sd/Factory/factory_test.sh" ]; then
    	echo -e ${YELLOW}detect /tmp/sd/Factory/factory_test.sh${NONE}
    	/tmp/sd/Factory/config.sh
    	exit
    fi
    ./load_cpld_ssp
    ./dispatch &
    
    ./cloud &
    ./p2p_tnp &
    ./mp4record &
    ./oss &
    ./rmm &
    ./watch_process &
    
    #start watchdog
    watchdog -t 2 -T 5 /dev/watchdog &
    J'ai également trouve un fichier dans etc/httpd.conf :

    Code:
    A:*
    /secret:tonywu:123qwe

  7. #6
    Foulek57

    Re : Ip cam inaccessible aucun port ouvert

    Voila la suite du message plus haut


    Et voici le que je reçois dans la console du port serial :

    Code:
    1:41.633 -> 
    16:51:41.633 -> 
    Starting kernel ...
    16:51:41.633 -> 
    16:51:41.633 -> 
    Linux version 3.10.27 (zhangzhidan@XY-201) (gcc version 4.8.5 20150209 (prerelease) (Realtek RSDK-4.8.5p1 Build 2521) ) #29 PREEMPT Wed May 22 14:16:12 CST 2019
    16:51:43.083 -> prom cpufreq = 500000000
    16:51:43.083 -> prom memsize = 67108864
    16:51:43.119 -> hw_ver: 0x2, hw_rev: 0x1, isp_ver: 0x1
    16:51:43.119 -> bootconsole [early0] enabled
    16:51:43.119 -> CPU revision is: 0000dc02
    16:51:43.119 -> FPU revision is: 01730001
    16:51:43.119 -> Determined physical RAM map:
    16:51:43.119 ->  memory: 04000000 @ 00000000 (usable)
    16:51:43.155 -> Reserved contiguous memory at 0x420000(0x1a00000)
    16:51:43.155 -> Zone ranges:
    16:51:43.155 ->   Normal   [mem 0x00000000-0x03ffffff]
    16:51:43.155 -> Movable zone start for each node
    16:51:43.155 -> Early memory node ranges
    16:51:43.155 ->   node   0: [mem 0x00000000-0x03ffffff]
    16:51:43.190 -> icache: 32kB/32B, dcache: 16kB/32B, scache: 0kB/0B
    16:51:43.190 -> Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 16256
    16:51:43.190 -> Kernel command line: console=ttyS1,57600 root=/dev/mtdblock3 rts_hconf.hconf_mtd_idx=1 rts-quadspi.channels=dual mtdparts=m25p80:8192k@0(global),192k@0k(boot),1344k@192k(kernel),1792k@1536k(rootfs),3072k@3328k(userdata),1664k@6400k(rootfs_backup),64k@8064k(vd1),64k@8128k(conf)
    16:51:43.270 -> PID hash table entries: 256 (order: -2, 1024 bytes)
    16:51:43.270 -> Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)
    16:51:43.270 -> Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
    16:51:43.314 -> Memory: 34084k/65536k available (3338k kernel code, 31452k reserved, 580k data, 176k init, 0k highmem)
    16:51:43.314 -> SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    16:51:43.314 -> Preemptible hierarchical RCU implementation.
    16:51:43.314 -> NR_IRQS:57
    16:51:43.334 -> Calibrating delay loop... 497.66 BogoMIPS (lpj=248832)
    16:51:43.370 -> pid_max: default: 32768 minimum: 301
    16:51:43.370 -> Mount-cache hash table entries: 512
    16:51:43.370 -> pinctrl core: initialized pinctrl subsystem
    16:51:43.370 -> regulator-dummy: no parameters
    16:51:43.370 -> NET: Registered protocol family 16
    16:51:43.406 -> Init force reset registers
    16:51:43.406 -> rtsxb2 registered with IRQs
    16:51:43.406 -> INFO: initializing ISP memory ...
    16:51:43.406 -> INFO: initializing ISP device ...
    16:51:43.406 -> ISP camera platform devices added
    16:51:43.406 -> INFO: initializing SD controller ...
    16:51:43.406 -> INFO: initializing snd device ...
    16:51:43.442 -> snd resvd mem size : 1048576
    16:51:43.442 -> INFO: initializing USB host ...
    16:51:43.442 -> INFO: initializing spi host ...0
    16:51:43.442 -> spi platform id is ffffffff
    16:51:43.442 -> INFO: initializing I2C master ...
    16:51:43.476 -> INFO: initializing DMA controller ...
    16:51:43.476 -> INFO: initializing adc ...
    16:51:43.476 -> INFO: initializing pinctrl device ...
    16:51:43.476 -> pinctrl_platform rts3903-pinctrl: rtspc registered with IRQs
    16:51:43.476 -> INFO: initializing ethernet devices ...
    16:51:43.509 -> INFO: initializing USB phy ...
    16:51:43.509 -> INFO: initializing watchdog controller ...
    16:51:43.509 -> INFO: initializing crypto device ...
    16:51:43.509 -> INFO: initializing pmu device ...
    16:51:43.509 -> INFO: initializing cpu dvfs device ...
    16:51:43.545 -> bio: create slab <bio-0> at 0
    16:51:43.545 -> rts_dmac rts3903-dmac: DesignWare DMA Controller, 4 channels
    16:51:43.545 -> INFO: realtek DMA engine inited
    16:51:43.545 -> usbcore: registered new interface driver usbfs
    16:51:43.545 -> usbcore: registered new interface driver hub
    16:51:43.578 -> usbcore: registered new device driver usb
    16:51:43.578 -> usbphy-platform usbphy-platform: Initialized Realtek IPCam USB Phy module
    16:51:43.578 -> Linux video capture interface: v2.00
    16:51:43.578 -> Advanced Linux Sound Architecture Driver Initialized.
    16:51:43.613 -> NET: Registered protocol family 2
    16:51:43.613 -> cfg80211: Calling CRDA to update world regulatory domain
    16:51:43.613 -> TCP established hash table entries: 512 (order: 0, 4096 bytes)
    16:51:43.648 -> TCP bind hash table entries: 512 (order: -1, 2048 bytes)
    16:51:43.648 -> TCP: Hash tables configured (established 512 bind 512)
    16:51:43.648 -> TCP: reno registered
    16:51:43.648 -> UDP hash table entries: 256 (order: 0, 4096 bytes)
    16:51:43.684 -> UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
    16:51:43.684 -> NET: Registered protocol family 1
    16:51:43.684 -> squashfs: version 4.0 (2009/01/31) Phillip Lougher
    16:51:43.684 -> jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
    16:51:43.720 -> msgmni has been set to 66
    16:51:43.720 -> NET: Registered protocol family 38
    16:51:43.720 -> Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    16:51:43.720 -> io scheduler noop registered
    16:51:43.756 -> io scheduler deadline registered
    16:51:43.756 -> io scheduler cfq registered (default)
    16:51:43.756 -> Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled
    16:51:43.756 -> serial8250: ttyS0 at MMIO 0x18810000 (irq = 6) is a 16550A
    16:51:43.756 -> console [ttyS1] enabled, bootconsole disabled
    16:51:43.792 -> console [ttyS1] enabled, bootconsole disabled
    16:51:43.792 -> serial8250: ttyS1 at MMIO 0x18810100 (irq = 6) is a 16550A
    16:51:43.792 -> serial8250: ttyS2 at MMIO 0x18810200 (irq = 6) is a 16550A
    16:51:43.792 -> dbg_iomem initialized!
    16:51:43.827 -> rts-quadspi rts3903-qspi: force to set channels from quad mode to dual mode
    16:51:43.827 -> rts-quadspi rts3903-qspi: request 60000000 Hz, force to set 41666666 Hz
    16:51:43.827 -> rts-quadspi rts3903-qspi: found w25q64fv, expected mx25l12835f
    16:51:43.863 -> rts-quadspi rts3903-qspi: w25q64fv (8192 Kbytes)
    16:51:43.863 -> 8 cmdlinepart partitions found on MTD device m25p80
    16:51:43.863 -> Creating 8 MTD partitions on "m25p80":
    16:51:43.863 -> 0x000000000000-0x000000800000 : "global"
    16:51:43.898 -> 0x000000000000-0x000000030000 : "boot"
    16:51:43.898 -> 0x000000030000-0x000000180000 : "kernel"
    16:51:43.898 -> 0x000000180000-0x000000340000 : "rootfs"
    16:51:43.898 -> 0x000000340000-0x000000640000 : "userdata"
    16:51:43.898 -> 0x000000640000-0x0000007e0000 : "rootfs_backup"
    16:51:43.932 -> 0x0000007e0000-0x0000007f0000 : "vd1"
    16:51:43.932 -> 0x0000007f0000-0x000000800000 : "conf"
    16:51:43.932 -> rts-quadspi rts3903-qspi: Realtek QSPI Controller at 0x18030000 (irq 5)
    16:51:43.968 -> rtl8168 Gigabit Ethernet driver 8.038.00-NAPI loaded
    16:51:44.040 -> rtl8168 rts3903-r8168 (unregistered net_device): Get invalid MAC address from flash!
    16:51:44.074 -> eth%d: 0xb8400000, 00:00:00:00:00:00, IRQ 10
    16:51:44.074 -> ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    16:51:44.074 -> ehci-rts: ehci-rts platform driver
    16:51:44.074 -> ehci-platform ehci-platform: EHCI Host Controller
    16:51:44.109 -> ehci-platform ehci-platform: new USB bus registered, assigned bus number 1
    16:51:44.109 -> ehci-platform ehci-platform: irq 11, io mem 0x18100000
    16:51:44.146 -> ehci-platform ehci-platform: USB 2.0 started, EHCI 1.00
    16:51:44.146 -> usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
    16:51:44.146 -> usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    16:51:44.146 -> usb usb1: Product: EHCI Host Controller
    16:51:44.182 -> usb usb1: Manufacturer: Linux 3.10.27 ehci_hcd
    16:51:44.182 -> usb usb1: SerialNumber: ehci-platform
    16:51:44.182 -> hub 1-0:1.0: USB hub found
    16:51:44.182 -> hub 1-0:1.0: 1 port detected
    16:51:44.182 -> ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    16:51:44.218 -> ohci-platform ohci-platform: Generic Platform OHCI Controller
    16:51:44.218 -> ohci-platform ohci-platform: new USB bus registered, assigned bus number 2
    16:51:44.218 -> ohci-platform ohci-platform: irq 11, io mem 0x18180000
    16:51:44.289 -> usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
    16:51:44.289 -> usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    16:51:44.324 -> usb usb2: Product: Generic Platform OHCI Controller
    16:51:44.324 -> usb usb2: Manufacturer: Linux 3.10.27 ohci_hcd
    16:51:44.324 -> usb usb2: SerialNumber: ohci-platform
    16:51:44.324 -> hub 2-0:1.0: USB hub found
    16:51:44.361 -> hub 2-0:1.0: 1 port detected
    16:51:44.361 -> ERROR: Unable to read RTP_REG_DC4_TRIM_OFFSET reg
    16:51:44.361 -> ERROR: Unable to read RTP_REG_CHIP_VERSION reg
    16:51:44.361 -> rtp_mfd 0-0030: pre_init() failed: -140
    16:51:44.361 -> rtp_mfd: probe of 0-0030 failed with error -140
    16:51:44.397 -> Stopped watchdog timer
    16:51:44.397 -> timer margin: 8 sec
    16:51:44.397 -> nf_conntrack version 0.5.0 (532 buckets, 2128 max)
    16:51:44.433 -> ip_tables: (C) 2000-2006 Netfilter Core Team
    16:51:44.433 -> TCP: cubic registered
    16:51:44.433 -> NET: Registered protocol family 17
    16:51:44.433 -> Key type dns_resolver registered
    16:51:44.433 -> mtd1 name is boot
    16:51:44.433 -> hconf init failed
    16:51:44.433 -> ALSA device list:
    16:51:44.433 ->   No soundcards found.
    16:51:44.469 -> VFS: Mounted root (squashfs filesystem) readonly on device 31:3.
    16:51:44.469 -> Freeing unused kernel memory: 176K (803e4000 - 80410000)
    16:51:44.504 -> usb 1-1: new high-speed USB device number 2 using ehci-platform
    16:51:44.721 -> usb 1-1: New USB device found, idVendor=0bda, idProduct=f179
    16:51:44.757 -> usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    16:51:44.757 -> usb 1-1: Product: 802.11n
    16:51:44.790 -> usb 1-1: Manufacturer: Realtek
    16:51:44.790 -> usb 1-1: SerialNumber: 00e04c000001
    16:51:45.149 -> Sat Oct 24 10:24:00 UTC 2015
    16:51:46.227 ->  _           _         _            
    16:51:46.227 -> | |         | |       | |           
    16:51:46.263 -> | |     ___ | |__  ___| |_ ___ _ __ 
    16:51:46.263 -> | |    / _ \| '_ \/ __| __/ _ \ '__|
    16:51:46.263 -> | |___| (_) | |_) \__ \ ||  __/ |   
    16:51:46.263 -> |______\___/|_.__/|___/\__\___|_|   
    16:51:46.263 ->                                     
    16:51:46.263 ->                                     
    16:51:46.299 -> ubusd: can't load library 'libblobmsg_json.so'
    16:51:46.408 -> jffs2: notice: (235) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found.
    16:51:46.444 -> home_mount_fail=0
    16:51:46.444 -> try /home/app/init.sh
    16:51:46.480 -> 
    16:51:46.480 -> Please press Enter to activate this console. Start /home/app/init.sh...
    16:51:46.626 -> rlx snd internal codec init
    16:51:46.663 -> soc-audio soc-audio.0.auto: ASoC: machine RLX_INTERN_CARD should use snd_soc_register_card()
    16:51:46.735 -> soc-audio soc-audio.0.auto:  rlx-codec-digital <-> pcm-platform mapping ok
    16:51:46.735 -> soc-audio soc-audio.0.auto:  rlx-codec-analog <-> pcm-platform mapping ok
    16:51:47.491 -> usbcore: registered new interface driver rtl8188fu
    16:51:48.106 -> rtscam:isp resvd mem addr : 0x00520000, size : 0x1900000
    16:51:48.106 -> rtscam:rtscam_mem_init v:0xa0520000 p:0x00520000 s:0x00001900
    16:51:48.142 -> rtscam:rtscam_lock_init
    16:51:48.214 -> rtscam:rtscam_soc_probe
    16:51:48.251 -> rtscam:rtscam_hx280_probe
    16:51:48.285 -> rtscam:hx280enc:HW at base <0x18060000> with ID <0x48317011>
    16:51:48.356 -> rtscam:rtscam_jpgenc_probe
    16:51:48.428 -> rtscam:rtscam_osd2_probe
    16:51:48.498 -> rtscam:rtstream_init
    16:51:48.678 -> cat: can't open '/sys/block/mmcblk0/device/cid': No such file or directory
    16:51:51.992 -> main(387) TF Card not exist!
    16:51:52.029 -> checkdisk, main() ret_status(10012) 
    16:51:52.245 -> 32+0 records in
    16:51:52.245 -> 32+0 records out
    16:51:52.245 -> 32 bytes (32B) copied, 0.007827 seconds, 4.0KB/s
    16:51:52.245 -> high level enable
    16:51:54.262 -> numid=8,iface=MIXER,name='Master Capture Volume'
    16:51:54.262 ->   ; type=INTEGER,access=rw---R--,values=2,min=0,max=127,step=0
    16:51:54.298 ->   : values=127,127
    16:51:54.298 ->   | dBscale-min=-33.50dB,step=0.50dB,mute=0

  8. #7
    Foulek57

    Re : Ip cam inaccessible aucun port ouvert

    Encore la suite (On est limité en nombre de caractères)

    Code:
    16:51:54.298 -> 16000 AECNS is created sucessfully 
    16:51:54.298 -> 
    16:51:54.298 -> 
    16:51:54.298 -> 
    16:51:54.298 -> ~~~~~set pcm callback ok~~~~~
    16:51:54.298 -> 
    16:51:54.298 -> 
    16:51:54.370 -> numid=1,iface=MIXER,name='Master Playback Volume'
    16:51:54.370 ->   ; type=INTEGER,access=rw---R--,values=2,min=0,max=127,step=0
    16:51:54.370 ->   : values=109,109
    16:51:54.370 ->   | dBscale-min=-63.50dB,step=0.50dB,mute=0
    16:51:54.443 -> numid=11,iface=MIXER,name='Real Amic Capture Volume'
    16:51:54.443 ->   ; type=INTEGER,access=rw---R--,values=2,min=0,max=69,step=0
    16:51:54.479 ->   : values=30,30
    16:51:54.479 ->   | dBscale-min=-6.00dB,step=0.75dB,mute=0
    16:51:54.479 -> ---update file(home_r10m) Not exist---
    16:51:54.479 -> ./init.sh: line 124: mDNSRespoderPosix: not found
    16:51:54.479 -> ./init.sh: line 129: can't create /proc/sys/vm/extfrag_threshold: nonexistent directory
    16:51:54.515 -> ./init.sh: line 130: can't create /proc/sys/vm/compact_memory: nonexistent directory
    16:51:54.551 -> hw_ver[32]=[21121113000000000000000000000000] 
    16:51:54.551 -> gpio_pin[32]=[32003002110022000000000000000000] 
    16:51:54.693 -> hw  =[21121113000000000000000000000000] 
    16:51:54.693 -> gpio=[32003002110022000000000000000000] 
    16:51:54.729 -> [CPLD_PERIPH] CPLD_PERIPH module inited 
    16:51:54.729 -> moto not support !!! 
    16:51:54.799 -> cat: can't open '/sys/block/mmcblk0/device/cid': No such file or directory
    16:51:55.083 -> Started watchdog timer
    16:51:55.083 -> Started watchdog timer
    16:51:55.727 -> rtscam:begin to load fw from isp.fw
    16:51:55.836 -> 10-24 10:24:10.642 p2p_tnp.c:2055|p2p_set_tnp_init_status() p2p_set_tnp_init_status 1 send_msg ok!
    16:51:55.836 -> 
    16:51:55.871 -> 
    16:51:55.871 -> [PID_LIST] pid_list_init ok, [ ver=May 27 2019, 16:21:04 ] 
    16:51:55.981 -> rtscam:Load firmware size : 131024.
    16:51:56.018 -> rtscam:Found ISP 1.011 device
    16:51:56.088 -> /bin/sh: /home/base/tools/hostapd.sh: not found
    16:51:56.125 -> main(5473) sys_init ok
    16:51:56.236 -> rtscam:video device <rts3903-isp> registered
    16:51:56.273 -> rtscam:rts3903-isp initialized
    16:51:56.345 -> rtscam:begin to load fw from isp.fw
    16:51:56.381 -> rtscam:Load firmware size : 131024.
    16:51:56.669 -> sensor = SC2230rtscam:begin to load fw from /home/lib/sc2230/isp_jin.fw
    16:51:56.669 -> 
    16:51:56.669 -> ===========
    16:51:56.812 -> rtscam:Load firmware size : 131024.
    16:51:56.848 -> rtscam:Found ISP 1.011 device
    16:51:56.884 -> rtscam:video device <rts3903-isp> registered
    16:51:56.956 -> rtscam:rts3903-isp initialized
    16:51:56.956 -> 
    16:51:56.956 -> choose isp_jin.fw============
    16:51:57.100 -> Failed to connect to wpa_supplicant - wpa_ctrl_open: No such file or directory
    16:51:57.136 -> 12-28 13:07:12.171 dispatch.c:1719|do_monitor_wifi() wifi disconnected, now reconnect wifi
    16:51:57.136 -> 
    16:51:57.136 -> 12-28 13:07:12.171 dispatch.c:1631|reset_wifi_moduusbcore: deregistering interface driver rtl8188fu
    16:51:57.171 -> le() now reset wifi module 
    16:51:57.171 -> 
    16:51:57.281 -> usb 1-1: reset high-speed USB device number 2 using ehci-platform
    16:51:57.852 -> usbcore: registered new interface driver rtl8188fu
    16:51:58.029 -> cat: can't open '/proc/timeout_cnt': No such file or directory
    16:51:58.029 -> ash: 100: unknown operand
    16:51:58.065 -> ash: 0: unknown operand
    
    16:51:58.848 -> killall: wpa_supplicant: no process killed
    16:51:58.848 -> killall: udhcpc: no process killed
    16:51:58.991 -> ash: 1: unknown operand
    16:52:01.795 -> ioctl[SIOCSIWAP]: Operation not permitted
    16:52:03.218 -> 16000 AECNS is free successfully 
    16:52:03.461 -> 
    16:52:03.461 -> ***** SMART BABYCRYING - V20160905.1 - *****
    16:52:03.639 ->   --- pmstat init_flt2ll[1] diff:191403 us, totalTm: 191403 us
    16:52:03.675 -> 
    16:52:03.675 -> ***** SMART BABYCRYING - V20160412.2 - *****
    16:52:03.675 -> ppmngr:0x5965b8, len:320000
    16:52:04.418 -> 16000 AECNS is created sucessfully 
    16:52:04.418 -> 
    16:52:04.418 -> 
    16:52:04.418 -> 
    16:52:04.418 -> ~~~~~set pcm callback ok~~~~~
    16:52:04.462 -> 
    16:52:04.462 -> 
    16:52:04.462 -> raw_video_init 0
    16:52:05.019 -> raw_video_init 2
    16:52:05.648 -> killall: udhcpc: no process killed
    16:52:17.068 -> main(5473) sys_init ok
    16:52:17.068 -> main(5488) Do sync time
    16:52:17.247 -> 12-28 13:07:32.316 p2p_tnp.c:2055|p2p_set_tnp_init_status() p2p_set_tnp_init_status 3 send_msg ok!
    16:52:17.283 -> 
    16:52:17.283 -> 12-28 13:07:32.317 p2p_tnp.c:6470|tnp_proc() PPPP_API Version: d2020e06 210.2.14.6
    16:52:17.283 -> 
    16:52:17.472 -> req_info=http://plt-api-de.xiaoyi.com/v2/ipc/sync_time?hmac=BIke7GBrJXU6Qe41glDqGUkYNp8%3D&seq=9
    16:52:17.472 -> req_info=https://plt-api-de.xiaoyi.com/vmanager/ipc/firmware/upgrade/silent?version=7.1.00.17A_201909271014&did=A1110000K5DL4X191008&sname=RealPJ
    16:52:17.653 -> 12-28 13:07:32.704 p2p_tnp.c:6508|tnp_proc() key(4kSm9i3nfWplBAOm)
    16:52:17.653 -> 
    16:52:17.688 -> p2p cur user(0) max_user_num(0) in_packet_loss(0) out_packet_loss(0)
    16:52:17.759 -> inpwd=nFDNDNe80WbsbMM0
    16:52:17.759 -> outbuf=9cb89cad76afcce53600d2141a3045de
    16:52:17.795 -> inpwd=nFDNDNe80WbsbMM0
    16:52:17.795 -> outbuf=9cb89cad76afcce53600d2141a3045de
    16:52:17.795 -> req_info=https://plt-api-de.xiaoyi.com/v4/ipc/on_line?hmac=SWe47hlVyovNWU0c43EELIzfaio%3D&seq=9&uid=77a4d2703f96e652546c268463edf286&password=9cb89cad76afcce53600d2141a3045de&version=7.1.00.17A_201909271014&model=0&port=0&mac=74:EE:2A:D8:84:DC&packetloss=0&p2pconnect=0&p2pconnect_success=0&tfstat=10012&timestamp=1579967535&ext_info=%7B%22p2p_encrypt%22%3A%22true%22%2C%22ssid%22%3A%22Xiaomi_65F6_plus%22%2C%22mac%22%3A%2274%3AEE%3A2A%3AD8%3A84%3ADC%22%2C%22ip%22%3A%22192.168.31.237%22%2C%22signal_quality%22%3A%2299%22%2C%22ap_mode%22%3A%22false%22%7D
    16:52:18.238 -> release chn 0###fmy###: in video_init
    16:52:18.310 -> Sensor ID SC2230
    16:52:18.345 -> set H264 to CVBR mode.
    16:52:18.416 -> webapi_do_login(2476) code=20000
    16:52:18.416 -> webapi_do_login(2502) css_flag:0
    16:52:18.452 -> webapi_do_login(2509) css_mode:1
    16:52:18.452 -> webapi_do_login(2556) DEC abilityTable:{"abilities":86}
    16:52:19.098 -> req_info=https://plt-api-de.xiaoyi.com/v4/ipc/deviceinfo?hmac=kvc2cs7hW%2B%2BV0JXmy7N4y0KIbwA%3D&seq=9&uid=77a4d2703f96e652546c268463edf286&timestamp=1579967535
    16:52:19.098 -> set H264 to CVBR mode.
    16:52:19.098 -> 
    16:52:19.098 -> 
    16:52:19.098 -> pthread creat do_isp 1 ok!!!
    16:52:19.098 -> 
    16:52:19.098 -> ###fmy###: out video_init success
    16:52:19.098 -> 
    16:52:19.098 -> 
    16:52:19.098 -> pthread creat media_rtl_get_videostream ok!!!
    16:52:19.098 -> 
    16:52:19.098 -> 
    16:52:19.098 -> 
    16:52:19.098 -> pthread creat media_rtl_get_videostream 1 ok!!!
    16:52:19.098 -> 
    16:52:19.098 -> auto_loop_func(1071) light_switch 0 ==> 2
    16:52:19.098 -> media_rtl_get_videostream(2152) cur_minute = -1, ch = 0, frm_cnt = 2
    16:52:19.098 -> 
    16:52:19.214 -> req_info=https://plt-api-de.xiaoyi.com/v4/tnp/on_line?hmac=bKiVv3ioVl6JscK5ujepUmk6RxY%3D&seq=9&uid=77a4d2703f96e652546c268463edf286&version=7.1.00.17A_201909271014&timestamp=1579967536
    16:52:20.467 -> 
    16:52:20.467 -> [16:52:17]:
    16:52:22.680 -> p2p cur user(0) max_user_num(0) in_packet_loss(0) out_packet_loss(0)
    16:52:24.722 -> msg_proc(1418) 
    16:52:24.722 -> 
    16:52:24.722 -> 
    16:52:24.722 -> msg_head->mainOperation(0x1007)
    16:52:24.722 -> 
    16:52:24.722 -> 
    16:52:24.722 -> 
    16:52:24.793 -> thread_short_record(434) Start record short file[/tmp/motion.mp4],duration:6 seconds,beap:0
    16:52:24.829 -> msg_proc(1588) rename /tmp/motion.jpg.tmp=>/tmp/motion.jpg Success
    16:52:27.480 -> thread_short_record(476) End record short file[/tmp/motion.mp4], aud_frame:98, vid_frame:126
    16:52:27.695 -> p2p cur user(0) max_user_num(0) in_packet_loss(0) out_packet_loss(0)
    16:52:27.731 -> req_info=https://plt-api-de.xiaoyi.com/v5/alert/gen_presigned_url?hmac=Qttafw1gHKc4hRY7S7J%2F4qPqsxs%3D&seq=9&uid=77a4d2703f96e652546c268463edf286&type=0&sub_type=1&suffix=jpg,mp4&time=1579967541&timestamp=1579967545
    16:52:32.699 -> p2p cur user(0) max_user_num(0) in_packet_loss(0) out_packet_loss(0)
    16:52:37.684 -> p2p cur user(0) max_user_num(0) in_packet_loss(0) out_packet_loss(0)
    16:52:42.689 -> p2p cur user(0) max_user_num(0) in_packet_loss(0) out_packet_loss(0)
    16:52:47.697 -> p2p cur user(0) max_user_num(0) in_packet_loss(0) out_packet_loss(0)
    16:52:52.687 -> p2p cur user(0) max_user_num(0) in_packet_loss(0) out_packet_loss(0)
    16:52:57.699 -> p2p cur user(0) max_user_num(0) in_packet_loss(0) out_packet_loss(0)
    16:53:02.638 -> media_rtl_get_videostream(2152) cur_minute = 26332792, ch = 0, frm_cnt = 1735
    16:53:02.638 -> 
    16:53:02.708 -> p2p cur user(0) max_user_num(0) in_packet_loss(0) out_packet_loss(0)
    16:53:03.565 -> 
    16:53:03.565 -> [16:53:00]:
    16:53:07.684 -> p2p cur user(0) max_user_num(0) in_packet_loss(0) out_packet_loss(0)

  9. #8
    umfred

    Re : Ip cam inaccessible aucun port ouvert

    regarde peut-être de ce côté là > https://github.com/YITechnology/YIOpenAPI

  10. #9
    Foulek57

    Re : Ip cam inaccessible aucun port ouvert

    Merci, j'avais déjà exploiter cette piste, le firmeware n'est pas du tout pareil malheureusement

  11. #10
    titus06

    Re : Ip cam inaccessible aucun port ouvert

    allooors, une solution ?

  12. #11
    Foulek57

    Re : Ip cam inaccessible aucun port ouvert

    Oui une solution est en cours.

    La solution est de faire un hack sur mesure...

    La camera fait un check pour voir si une mise a jour est dispo sur la SD, elle recherche un fichier et je m'en sert pour lancer un script perso qui lancera un busybox compilé sur la SD.

    C'est l'idée mais je dois me documenter je n'ai jamais fait ça et je ne trouve pas trop d'info non plus si le net car le système Linux est un mipsel ce qui est plutôt rare...

    J'ai mis ça de cote pour l'instant j'ai d'autre projets sur le feu.

Discussions similaires

  1. C'est quoi la différence entre un ensemble ouvert et un intervale ouvert ?
    Par kira1kira dans le forum Mathématiques du supérieur
    Réponses: 10
    Dernier message: 02/10/2015, 13h51
  2. Nombreux port ouvert
    Par hterrolle dans le forum Internet - Réseau - Sécurité générale
    Réponses: 6
    Dernier message: 05/08/2010, 20h26
  3. Plus aucun port USB ne fonctionne.
    Par invite5b50aada dans le forum Matériel - Hardware
    Réponses: 2
    Dernier message: 27/06/2010, 16h39
  4. R\Q INTER [0;1] ne contient aucun ouvert non vide
    Par julien_4230 dans le forum Mathématiques du supérieur
    Réponses: 6
    Dernier message: 10/09/2009, 19h53
  5. emule : port inaccessible ms parefeu bien réglé
    Par invite4eb54305 dans le forum Logiciel - Software - Open Source
    Réponses: 1
    Dernier message: 05/05/2006, 21h16
Découvrez nos comparatifs produits sur l'informatique et les technologies.