[nox-dev] Account on nox wiki

2012-01-18 Thread Maciej Gałkiewicz
Hello

I would like to help with documentation on nox wiki. I have found some
links which does not work anymore or do not point to appropriate
destination. The next thing is installation manual. It does not work for
debian wheezy and I have experienced some problems with debian squeeze too.
I would be happy to help.

regards
Maciej
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] Account on nox wiki

2012-01-18 Thread Kyriakos Zarifis
Hi Maciej,

thanks for your contribution!
I will contact you with the details of your account.

On Wed, Jan 18, 2012 at 2:11 AM, Maciej Gałkiewicz 
maciej.galkiew...@gmail.com wrote:

 Hello

 I would like to help with documentation on nox wiki. I have found some
 links which does not work anymore or do not point to appropriate
 destination. The next thing is installation manual. It does not work for
 debian wheezy and I have experienced some problems with debian squeeze too.
 I would be happy to help.

 regards
 Maciej

 ___
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev


___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


[nox-dev] Problem with editing wiki

2012-01-18 Thread Maciej Gałkiewicz
Hello
I have got following error when trying to save edited wiki page:
*Fatal error*: Allowed memory size of 20971520 bytes exhausted (tried to
allocate 8157 bytes) in */var/www/
noxrepo.org/noxwiki/extensions/SpamBlacklist/SpamBlacklist_body.php* on
line *411*

Do you have any tracker for such things? I am willing to help with sysadmin
tasks.

regards
Maciej
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] NOX on IRC

2012-01-18 Thread Kyriakos Zarifis
Great to see some activity on IRC already :

On Tue, Jan 17, 2012 at 6:15 PM, Kyriakos Zarifis kyr.zari...@gmail.comwrote:

 The nox-dev mailing list is still the best way discuss NOX or ask for
 help, but there is now also a IRC channel where NOX users and developers
 can hangout for a more real-time type of interaction.

 Join us on #noxcontroller on freenode servers.

 (For instant web-based access: http://webchat.freenode.net/ )

___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] Problem with editing wiki

2012-01-18 Thread Maciej Gałkiewicz
On Wed, Jan 18, 2012 at 10:45 PM, Kyriakos Zarifis kyr.zari...@gmail.comwrote:

 Thanks for reporting! Should be fixed - can you give it another try?


Works fine thanks.

Maciej
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


[nox-dev] nox api development

2012-01-18 Thread edward wilson
hi,
Currently im using NOX 0.9.0(zaku)~full~beta (nox_core), compiled Jan  3
2012 15:21:13
Compiled with OpenFlow 0x01

Now i have developed this api for getting aggregrate table stats
1. def aggregate_timer(self, dp):
flow = ofp_match()
flow.dl_type=ethernet.ethernet.IP_TYPE
flow.nw_proto=ipv4.ipv4.ICMP_PROTOCOL
self.ctxt.send_aggregate_stats_request(dp, flow, 0xff)
self.post_callback(MONITOR_TABLE_PERIOD, lambda :
self.aggregate_timer(dp))

Now when i connect nox controller to switch and display the aggregrate
statistics i get
Aggregate stats in from datapath 2c:27:d7:1d:08:7d
packet_count-- 0
flow_count-- 0
byte_count-- 0
however i have a rule with nw_proto=icmp and dl_type=ip, and packets do
match this rule but still statistics are displayed as zero.


2. Even if i use following definition
def aggregate_timer(self, dp):
flow = ofp_match()
flow.wildcards=0x
self.ctxt.send_aggregate_stats_request(dp, flow, 0xff)
self.post_callback(MONITOR_TABLE_PERIOD, lambda :
self.aggregate_timer(dp)
now in this case statistics should be displayed for all rules but again the
aggregrate statistics displayed are zero.
Aggregate stats in from datapath 2c:27:d7:1d:08:7d
packet_count-- 0
flow_count-- 0
byte_count-- 0

Please let me know if am missing something.

regards
___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev


Re: [nox-dev] nox api development

2012-01-18 Thread Murphy McCauley
So my first thought is to wonder what happens if you try with wildcards = 
0x...

-- Murphy

On Jan 18, 2012, at 11:19 PM, edward wilson wrote:

 hi,
 Currently im using NOX 0.9.0(zaku)~full~beta (nox_core), compiled Jan  3 2012 
 15:21:13
 Compiled with OpenFlow 0x01 
 
 Now i have developed this api for getting aggregrate table stats 
 1. def aggregate_timer(self, dp):
 flow = ofp_match()
 flow.dl_type=ethernet.ethernet.IP_TYPE
 flow.nw_proto=ipv4.ipv4.ICMP_PROTOCOL
 self.ctxt.send_aggregate_stats_request(dp, flow, 0xff)
 self.post_callback(MONITOR_TABLE_PERIOD, lambda : 
 self.aggregate_timer(dp))
 
 Now when i connect nox controller to switch and display the aggregrate 
 statistics i get 
 Aggregate stats in from datapath 2c:27:d7:1d:08:7d
 packet_count-- 0 
 flow_count-- 0 
 byte_count-- 0
 however i have a rule with nw_proto=icmp and dl_type=ip, and packets do match 
 this rule but still statistics are displayed as zero.
 
 
 2. Even if i use following definition 
 def aggregate_timer(self, dp):
 flow = ofp_match()
 flow.wildcards=0x
 self.ctxt.send_aggregate_stats_request(dp, flow, 0xff)
 self.post_callback(MONITOR_TABLE_PERIOD, lambda : 
 self.aggregate_timer(dp)
 now in this case statistics should be displayed for all rules but again the 
 aggregrate statistics displayed are zero.
 Aggregate stats in from datapath 2c:27:d7:1d:08:7d
 packet_count-- 0 
 flow_count-- 0 
 byte_count-- 0
 
 Please let me know if am missing something.
 
 regards
 
 ___
 nox-dev mailing list
 nox-dev@noxrepo.org
 http://noxrepo.org/mailman/listinfo/nox-dev

___
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev