Looks like a rebranded EB600EM without the headphone jack.
- CPU: Samsung S3C2440AL-40
- RAM: 64MB (H57V2562GTR x 2)
- Storage: 1024MB Flash
Looks like a rebranded EB600EM without the headphone jack.
| ''' | |
| Copyright (c) 2011, Richard Nienaber | |
| All rights reserved. | |
| Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
| Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
| Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
| The name of 'Richard Nienaber' may not be used to endorse or promote products derived from this software without specific prior written permission. |
| diff --git a/netbox/netbox/wsgi.py b/netbox/netbox/wsgi.py | |
| index ecfd81d..cf3a5b1 100644 | |
| --- a/netbox/netbox/wsgi.py | |
| +++ b/netbox/netbox/wsgi.py | |
| @@ -1,8 +1,26 @@ | |
| -import os | |
| +""" | |
| +WSGI config for do_ipam project. | |
| -from django.core.wsgi import get_wsgi_application |
| diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py | |
| index 557477c..54e74aa 100644 | |
| --- a/netbox/netbox/settings.py | |
| +++ b/netbox/netbox/settings.py | |
| @@ -135,6 +135,10 @@ INSTALLED_APPS = ( | |
| 'utilities', | |
| 'virtualization', | |
| ) | |
| +AUTHENTICATION_BACKENDS = [ | |
| + 'utilities.backends.ConfigureRemoteUserBackend', |
| diff --git a/netbox/templates/home.html b/netbox/templates/home.html | |
| index beb157f..6ec58ba 100644 | |
| --- a/netbox/templates/home.html | |
| +++ b/netbox/templates/home.html | |
| @@ -158,7 +158,7 @@ | |
| {% for a in recent_activity %} | |
| <div class="list-group-item"> | |
| {{ a.icon }} {{ a.message|safe }}<br /> | |
| - <small class="text-muted">{{ a.user }} - {{ a.time|date:'SHORT_DATETIME_FORMAT' }}</small> | |
| + <small class="text-muted">{{ a.user.first_name }} {{ a.user.last_name }} ({{ a.user }}) - {{ a.time|date:'SHORT_DATETIME_FORMAT' }}</small> |
| wireshark -k -i <(ssh root@dumphost.example.org tcpdump -U -w - host somehost.example.org and port 80) |