Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
1792 connectés 

  FORUM HardWare.fr
  Réseaux grand public / SoHo
  WiFi et CPL

  repeat bridge openwrt. j'y arrive pas .....

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

repeat bridge openwrt. j'y arrive pas .....

n°660938
Ketchoupi1
Posté le 22-04-2013 à 20:07:10  profilanswer
 

bonsoir a tous
 
 
j'ai voulu faire le malin et j'ai voulu creer un pseudo bridge avec openwrt un repeater bridge, sauf que je n'y arrive pas.
le routeur est un wr703N v1.6 un petit exemple :  
 
http://bluemarmot.tucristal.es/drupal/fr/node/23
 
ce que je cherche a faire :  
http://wiki.openwrt.org/doc/recipes/relayclient
 
j'ai essayé avec ce firmware :  
http://www.corroy.org/blog/index.php/2013/02
 
mais ca ne doit pas etre la bonne version pour mon routeur car il en existe de nombreuses ....
 
j'ai failli le bricker 2 fois, semi brick heureusement recuperes .... j'ai eu un peu peur tout de meme.
 
 
ce que j'ai fait :  
 
l'interface luci est bien installée.
j'arrive a me connecter via le wifi au ssid : DDwrt_vap
la connection marche bien par l'ethernet du w703N mais definitivement je n'arrive pas a faire le relay par wifi
 
bref je nage :  
 
ma version du firmware :
 
Router ModelTP-LINK TL-WR703N v1  
 
Firmware Version OpenWrt Attitude Adjustment 12.09-beta /LuCI Trunk (trunk+svn9220)
   
Kernel Version3.3.8
 
allez je ressaye encore une fois .......
ip wr703N : 192.168.1.153
opkg update
opkg install relayd
opkg install luci-proto-relay
 
 
puis :  
 
uci set wireless.@wifi-device[0].disabled=0
uci commit wireless
wifi
 
la j'ai un reseau wifi : openwrt qui se creer
iwilist scan et PAM :  
 
lo        Interface doesn't support scanning.
 
wlan0     Interface doesn't support scanning : Operation not supported
 
eth0      Interface doesn't support scanning.
 
br-lan    Interface doesn't support scanning.
 
par contre je peux scan via l'interface web .....
 
grep -a U-Boot /dev/mtd0ro | cut -d'I' -f1 donne U-Boot 1.1.4 (Sep 26 2011 - 11:13:49)
 
 
a votre bon coeur .....
merci pour vos futures reponses
 
cordialement


Message édité par Ketchoupi1 le 01-05-2013 à 12:52:59
mood
Publicité
Posté le 22-04-2013 à 20:07:10  profilanswer
 

n°661192
Ketchoupi1
Posté le 23-04-2013 à 21:50:21  profilanswer
 

je viens de passer sous une autre version OpenWrt Barrier Breaker r36384 / LuCI Trunk (svn-r9811)  
ssid openwrt actif sans cryptage et routeur connecté en ethernet ca fonctionne.
 
 
je tourne en rond ......

n°662438
Ketchoupi1
Posté le 29-04-2013 à 15:52:44  profilanswer
 

je vais essayer de transposer l'explication de paillassou chez moi
 
https://forum.openwrt.org/viewtopic [...] 31729&p=24

n°662883
Ketchoupi1
Posté le 01-05-2013 à 12:51:16  profilanswer
 

bien apres avoir mis le firmware du tl-mr3020 (qui lui ressemble)
mis le firwmware openwrt du tl-mr3020
puis reussi a remettre le openwrt du wr703N
 
j'en suis finalement au meme point voir pire car je n'arrive pas a faire le pseudo bridge par ethernet, voici la config:
 
 
 
 
/ETC/CONFIG/NETWORK
 
config interface 'loopback'                                                                        
        option ifname 'lo'                                                                        
        option proto 'static'                                                                      
        option ipaddr '127.0.0.1'                                                                  
        option netmask '255.0.0.0'                                                                
                                                                                                   
config globals 'globals'                                                                          
        option ula_prefix 'fd16:ec43:d508::/48'                                                    
                                                                                                   
config interface 'lan'                                                                            
        option ifname 'eth0'                                                                      
        option type 'bridge'                                                                      
        option proto 'static'                                                                      
        option netmask '255.255.255.0'                                                            
        option ip6assign '60'                                                                      
        option dns '8.8.8.8'                                                                      
        option gateway '192.168.1.1'                                                              
        option ipaddr '192.168.2.1'                                                                
                                                                                                   
config interface 'wwan'                                                                            
        option proto 'dhcp'                                                                        
                                                                                                   
config interface 'stabridge'                                                                      
        option proto 'relay'                                                                      
        list network 'lan'                                                                        
        list network 'wwan'      
 
 
 
/ETC/NETWORK/WIRELESS
 
config wifi-device 'radio0'
        option type 'mac80211'
        option hwmode '11ng'
        option path 'platform/ar933x_wmac'
        option htmode 'HT20'
        list ht_capab 'SHORT-GI-20'
        list ht_capab 'SHORT-GI-40'
        list ht_capab 'RX-STBC1'
        list ht_capab 'DSSS_CCK-40'
        option disabled '0'
        option channel '6'
        option txpower '27'
        option country 'FR'
 
config wifi-iface
        option network 'wwan'
        option ssid 'ddwrt'
        option encryption 'psk2'
        option device 'radio0'
        option mode 'sta'
        option bssid 'MACDUSERVEUR DHCP'
        option key '7XXXXXXXXXXXXXXX'
 
 
 
/ETC/CONFIG/WIRELESS
 
config defaults                                                                                    
        option syn_flood '1'                                                                      
        option input 'ACCEPT'                                                                      
        option output 'ACCEPT'                                                                    
        option forward 'REJECT'                                                                    
                                                                                                   
config zone                                                                                        
        option name 'lan'                                                                          
        option input 'ACCEPT'                                                                      
        option output 'ACCEPT'                                                                    
        option network 'lan wwan'                                                                  
        option forward 'ACCEPT'                                                                    
                                                                                                   
config zone                                                                                        
        option name 'wan'                                                                          
        option network 'wan'                                                                      
        option input 'REJECT'                                                                      
        option output 'ACCEPT'                                                                    
        option forward 'REJECT'                                                                    
        option masq '1'                                                                            
        option mtu_fix '1'                                                                        
                                                                                                   
config forwarding                                                                                  
        option src 'lan'                                                                          
        option dest 'wan'                                                                          
                                                                                                   
config rule                                                                                        
        option name 'Allow-DHCP-Renew'                                                            
        option src 'wan'                                                                          
        option proto 'udp'                                                                        
        option dest_port '68'                                                                      
        option target 'ACCEPT'                                                                    
        option family 'ipv4'                                                                      
                                                                                                   
config rule                                                                                        
        option name 'Allow-Ping'                                                                  
        option src 'wan'                                                                          
        option proto 'icmp'                                                                        
        option icmp_type 'echo-request'                                                            
        option family 'ipv4'                                                                      
        option target 'ACCEPT'            
 
config rule                                                                                        
        option name 'Allow-DHCPv6'                                                                
        option src 'wan'                                                                          
        option proto 'udp'                                                                        
        option src_ip 'fe80::/10'                                                                  
        option src_port '547'                                                                      
        option dest_ip 'fe80::/10'                                                                
        option dest_port '546'                                                                    
        option family 'ipv6'                                                                      
        option target 'ACCEPT'                                                                    
                                                                                                   
config rule                                                                                        
        option name 'Allow-ICMPv6-Input'                                                          
        option src 'wan'                                                                          
        option proto 'icmp'                                                                        
        list icmp_type 'echo-request'                                                              
        list icmp_type 'echo-reply'                                                                
        list icmp_type 'destination-unreachable'                                                  
        list icmp_type 'packet-too-big'                                                            
        list icmp_type 'time-exceeded'                                                            
        list icmp_type 'bad-header'                                                                
        list icmp_type 'unknown-header-type'                                                      
        list icmp_type 'router-solicitation'                                                      
        list icmp_type 'neighbour-solicitation'                                                    
        list icmp_type 'router-advertisement'                                                      
        list icmp_type 'neighbour-advertisement'                                                  
        option limit '1000/sec'                                                                    
        option family 'ipv6'                                                                      
        option target 'ACCEPT'                                                                    
                                                                                                   
config rule                                                                                        
        option name 'Allow-ICMPv6-Forward'                                                        
        option src 'wan'                                                                          
        option dest '*'                                                                            
        option proto 'icmp'                                                                        
        list icmp_type 'echo-request'                                                              
        list icmp_type 'echo-reply'                                                                
        list icmp_type 'destination-unreachable'                                                  
        list icmp_type 'packet-too-big'                                                            
        list icmp_type 'time-exceeded'                                                            
        list icmp_type 'bad-header'                                                                
        list icmp_type 'unknown-header-type'                                                      
        option limit '1000/sec'                                                                    
        option family 'ipv6'                                                                      
        option target 'ACCEPT'  
 
config include                                                                                    
        option path '/etc/firewall.user'                                                          
                                                                                                   
config include                                                                                    
        option type 'script'                                                                      
        option path '/usr/share/firewall/ipv6-ula-border.sh'                                      
        option family 'IPv6'                                                                      
        option reload '1'      
 
/ETC/CONFIG/DHCP
 
 
config dnsmasq
        option domainneeded '1'
        option boguspriv '1'
        option localise_queries '1'
        option rebind_protection '1'
        option rebind_localhost '1'
        option local '/lan/'
        option domain 'lan'
        option expandhosts '1'
        option authoritative '1'
        option readethers '1'
        option leasefile '/tmp/dhcp.leases'
        option resolvfile '/tmp/resolv.conf.auto'
        option enable_tftp '1'
 
config dhcp 'lan'
        option interface 'lan'
        option start '100'
        option limit '150'
        option leasetime '12h'
        option ignore '1'
 
config dhcp 'wan'
        option interface 'wan'
        option ignore '1'
                     
 
si quelqu'un passait par la
 
 
j'avoue que j'ai vraiment du mal, d'autant que le ping fonctionne dans l'interface du wr703N


Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Réseaux grand public / SoHo
  WiFi et CPL

  repeat bridge openwrt. j'y arrive pas .....

 

Sujets relatifs
connection en bridge sur une VM en utilisant un clé 3Gje n'arrive pas à faire fonctionner mon airport acheté il y a qqes sem
Passage routeur numéricable en mode bridge[Freebox V6] Box bridge + routeur : fonctionnement switch Freebox Serv
Pas de dhcp derrière répéteur/bridge tp-link wr1043nd sous dd-wrtModem routeur en mode bridge, impossible de le connecter
Port Forwarding Dlink 320b bridgeopenwrt/dd-wrt pour du PPPoA ?
Je n'arrive pas à me connecter au site commandes-groupees.frRouteur pour openwrt
Plus de sujets relatifs à : repeat bridge openwrt. j'y arrive pas .....


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR